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