菜鸟教程小白 发表于 2022-12-12 20:00:53

iOS - 静态单元格未出现在 UITableViewController 的子类中


                                            <p><p>我知道静态只适用于 <code>UITableViewController</code>。所以我将 Storyboard 中的 <code>UITableViewController</code> 拖放到我的工作空间。我添加了一些静态单元格,当我运行我的应用程序时它们工作正常。但是,如果我将类(在 Storyboard 中)更改为我自己的 <code>UITableViewController</code> 子类 - 静态单元格就会消失。我做错了什么?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我整理好了。当您创建 <code>UITableViewController</code> 的子类时,Xcode 会自动创建覆盖静态单元格数据的方法。所以你必须把这些注释掉:</p>

<pre><code>- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于iOS - 静态单元格未出现在 UITableViewController 的子类中,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/22329086/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/22329086/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iOS - 静态单元格未出现在 UITableViewController 的子类中