菜鸟教程小白 发表于 2022-12-12 17:17:39

ios - 在 UITableView 中插入一些行后,它在 ios 7 中没有滚动


                                            <p><p>您好,我已经创建了 UITableView。在 Touch of it 单元格上,我在其中插入更多行。在 UITableView 中插入更多行后,滚动不起作用。这只发生在 ios 7 中。</p>

<p>有人遇到过这个问题吗?</p>

<p>这是插入的代码。</p>

<pre><code>NSArray *rowIndex = ]];
;
;
;
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我不确定您的代码发生了什么,但是如果您想在每个添加行之后滚动,只需调用下面的方法(注意:- 根据您的变量名称修改代码)</p>

<pre><code>-(void)goToBottom
{
   NSInteger lastSectionIndex = MAX(0, - 1);
   NSInteger lastRowIndex = MAX(0, [ myTableName numberOfRowsInSection:lastSectionIndex] - 1);

   NSIndexPath *lastIndexPath = ;

   if( &gt; 0)
    {
      ;
    }

}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 在 UITableView 中插入一些行后,它在 ios 7 中没有滚动,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/20651403/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/20651403/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 在 UITableView 中插入一些行后,它在 ios 7 中没有滚动