菜鸟教程小白 发表于 2022-12-13 04:31:21

ios - 将 UIViewController 更改为 UITableViewController


                                            <p><p>我有 iOS 应用程序,它是主从 View 应用程序。默认是masterview tableview,detailview是经典<code>UIViewController</code>。现在,我需要将 <code>UIViewController</code> 更改为 <code>UITableViewController</code>,所以我在 <code>detailViewController.h</code> 中更改了这个</p>

<pre><code>@interface DetailViewController : UIViewController
</code></pre>

<p>进入这个:</p>

<pre><code>@interface DetailViewController : UITableViewController
</code></pre>

<p>在 .xib 文件中,我已将自定义类设置为 <code>DetailViewController</code>,所以它应该可以工作...但它没有...当我尝试运行应用程序时,它返回一个错误:</p>

<blockquote>
<p>Terminating app due to uncaught exception &#39;NSInternalInconsistencyException&#39;, reason: &#39;- loaded the &#34;DetailViewController&#34; nib but the view outlet was not set.&#39;</p>
</blockquote>

<p>请问哪里有问题?非常感谢! </p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您必须在 xib 文件中删除您的 ViewController 对象,并从 Utilities 选项卡中使用它们的 UITableViewController。所以在代码中改变子类是不够的,你还需要确保你在 xib 中使用了正确的模板。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 将 UIViewController 更改为 UITableViewController,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/19327500/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/19327500/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 将 UIViewController 更改为 UITableViewController