菜鸟教程小白 发表于 2022-12-12 22:15:50

ios - UITableview 不调用 cellForRowAtIndexPath


                                            <p><p>第一次推送 ViewController (从前一个 ViewController )时,所有委托(delegate)方法都会被调用(在导航 Controller 内)。</p>

<p>当按下返回返回上一个 ViewController ,然后再次按下时(第二次)</p>

<p><code>cellForRowAtIndexPath</code> 未被调用,但 <code>numberOfRowsInSection</code> 和 numberOfSectionsInTableView 被调用。</p>

<p><code>reloadData</code> 在</p>中被调用

<pre><code>-(void)viewWillAppear:(BOOL)animated
{
    ;
}
</code></pre>

<p>我已经尝试过</p>

<pre><code>-(void)viewDidAppear:(BOOL)animated
{
    ;
}
</code></pre>

<p>它没有帮助。</p>

<p>编辑</p>

<pre><code>- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return 1; // called
}

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return 3; // called
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    // relevant code for cell - THIS METHOD IS NOT CALLED SECOND TIME
}
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>如果您找不到上述任何正当理由,我将重点介绍
另一个人可能犯的错误是(就像我曾经做过的那样)。 </p>

<p>要注意的步骤是</p>

<p>1) 第一步初始化您的自定义表格 View
2) 在将 tableView 添加到 View 之前设置委托(delegate)和数据源。 </p>

<p>如果在将tableview添加到self.view对象后错误地执行了这些步骤,那么这将是一种让自己挣扎的沉默方式。正确的顺序如下:</p>

<pre><code>self.myTableView = [ initWithFrame:CGRectMake(0, 0,    myViewwidth, 120) style:UITableViewStylePlain];
self.myTableView.tag = MY_TABLEVIEW_TAG;
self.myTableView.delegate = self;
self.myTableView.dataSource = self;
;
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - UITableview 不调用 cellForRowAtIndexPath,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/23590837/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/23590837/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - UITableview 不调用 cellForRowAtIndexPath