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

ios - 如何使用分段控制操作将数据从 API 获取到 tableview?


                                            <p><p>我有一个 ViewController ,我添加了 1tableview 和分段控制。
在默认情况下,segmented=0 被选中并将数据加载到使用 API 加载的数据的 tableview 中。
当我在同一个 TableView 中选择分段 = 1、2、3、4、5 时,如何使用 API 加载数据。
这是我的代码</p>

<pre><code>view DidLoad
{
;
;
}

-(void)segmentSelected:(id)sender
{
if (segment.selectedSegmentIndex == 0)
{
    NSURLRequest *request0 = [initWithURL:];
    connection1 =[initWithRequest:request0 delegate:self];
    ;
}
else if (segment.selectedSegmentIndex == 1)
    {
      NSURLRequest *request1 = [initWithURL:];
      connection1 = [initWithRequest:request1 delegate:self];
      ;

    }
else if (segment.selectedSegmentIndex == 2)
{
    NSURLRequest *request2 = [initWithURL:];
    connection1 = [initWithRequest:request2 delegate:self];
    ;
}
}

-(void)connectionDidFinishLoading:(NSURLConnection *)connection
{
if (connection==connection1)
{
    NSDictionary *dic =;

    contestArray = ;

    courseArray = ;

    contestIdArray = ;

    ;
    ;
}
}
</code></pre>

<p>如何按部分管理我的 tableviewnumberofrows ?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><pre><code>-(void)segmentSelected:(id)sender {
    index = segment.selectedSegmentIndex;
    ;
</code></pre>

<p>//添加这一行</p>

<pre><code>in tableview delegate
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {

if(index == 0){
return array1.count;
}
if(index == 1){
return array2.count;
}
if(index == 3){
return array3.count;
}
if(index == 4){
return array4.count;
}
}
</code></pre>

<p>cellForRowAtIndexPath 相同</p>

<pre><code>- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    if(index == 0) {
         cell.textfield = ;
   //like that

}
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何使用分段控制操作将数据从 API 获取到 tableview?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/34333445/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/34333445/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何使用分段控制操作将数据从 API 获取到 tableview?