菜鸟教程小白 发表于 2022-12-13 04:05:08

ios - 使用 JSON 的 TableView 滚动分页


                                            <p><p>我是 Objective-c 的新手。我有问题;</p>

<p>我从 JSON 获取和解析,并将它们写入带有数组的 tableview。
这显然是一个很好的结果。</p>

<p>但是当我滚动底部时,我想获得第二页。我阅读大量文件。但我无法将第二页传递给 tableView。</p>

<p>这是我的代码摘要;</p>

<p>我正在使用第 0 页调用 JSON get 和 make 数组方法。(没问题)</p>

<pre><code>- (void)viewDidLoad
{
    ;
}
</code></pre>

<p>我的 JSON get 和 make 数组方法。 (问题就在这里)</p>

<pre><code>-(void)takeList: (NSUInteger) page
{
    NSString * urlStr = ;
    NSURL * url = ;
    NSData * data = ;
    if (page == 0) {
      array = ;
    }else{
      new_array = ;
      NSMutableArray *ar1 = ;
      NSMutableArray *ar2 = ;
      ;
      ;
    }
}
</code></pre>

<p>我的滚动调用方法(没问题)</p>

<pre><code>-(void)scrollViewDidEndDragging:(UIScrollView *)scrollView willDecelerate:(BOOL)decelerate
{

    NSInteger currentOffset = scrollView.contentOffset.y;
    NSInteger maximumOffset = scrollView.contentSize.height - scrollView.frame.size.height;

    if ((currentOffset &gt; 0) &amp;&amp; (maximumOffset - currentOffset) &lt;= 140) {
      pages++;
      ;
    }

}
</code></pre>

<p>最后 <code>cellForRowAtIndexPath</code> 使用这个数组。</p>

<p>请帮助我“如何将新页面发送到 tableView?”。</p>

<p>谢谢(抱歉我的英语不好。)</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>这段代码</p>

<pre><code> new_array = ;
    NSMutableArray *ar1 = ;
    NSMutableArray *ar2 = ;
    ;
    ;   
</code></pre>

<p>不会做任何有用的事情。这不是您在objective-c(或我能想到的任何语言)中连接数组的方式。相反,您需要将其替换为以下内容</p>

<pre><code> new_array = ;

    array = ;
    ;   
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 使用 JSON 的 TableView 滚动分页,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/18757640/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/18757640/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 使用 JSON 的 TableView 滚动分页