我的应用最近(iOS 11)在加载自定义 UIViewController 时开始崩溃:
崩溃发生在以下行:
PDFViewController *pdfvc = [self.storyboard instantiateViewControllerWithIdentifier"PDFView"];
我确认:
- 在 Storyboard中,我引用了正确的自定义类
PDFViewController 并且 ID 是正确的 PDFView 。
- 父类(super class)有initWithCoder
我得到的确切错误是:
[PDFViewController initWithCoder:]: unrecognized selector sent to instance 0x1c0012320
2017-09-26 22:35:44.578082+0900 flightcomp[9764:3233421] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[PDFViewController initWithCoder:]: unrecognized selector sent to instance 0x1c0012320'
现在我真的在这方面疯狂地搜索 - 浏览了这么多 StackOverflow 和 Google 页面,却一无所获。
所以我的问题是 - 有人可以提出一些可能导致此问题的事情,以便我可以进一步调试。
谢谢。
附言
PDFViewController 的 .h 看起来像:
@interface PDFViewController : UIViewController <UIPrintInteractionControllerDelegate>
PDFViewController 的 .m 看起来像:
@implementation PDFViewController
- (id)initWithNibNameNSString *)nibNameOrNil bundleNSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
// Custom initialization
}
return self;
}
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view.
}
Best Answer-推荐答案 strong>
/image/BSneC.png
问题是 Apple 从 iOS 11 开始已将 PDFKit 作为框架包含在内。我相信 PDFViewController 现在是这个框架的保留名称。我遇到了同样的问题,在将 PDFViewController 更改为 SuperDuperPDFViewController 后工作得很好。
关于iOS 11 - 未加载自定义 View Controller 的建议 - 崩溃,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/46428259/
|