菜鸟教程小白 发表于 2022-12-13 16:45:45

iphone - 当用户单击一行时,如何移动到另一个 View Controller ?


                                            <p><p>我是 iPhone 开发的新手,我想在用户单击特定行时转到另一个页面。所以,如果他们点击第一行,我希望页面重定向到第一个 ViewController ,依此类推。每行都有自己的 ViewController 。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>首先,您不需要为每一行设置不同的 ViewController (除非您有充分的理由这样做)。</p>

<p>正确的方法是设置 1 个 ViewController ,该 Controller 将适合原始中的所有单元格并根据所选行更改其数据。</p>

<p>你这样做的方式是:</p>

<pre><code>in the - DidSelectRowAtIndexPath function in your implementation file you shuld:

    - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
   {

//allocate your view controller
         DetailedViewController *detailedViewController = [ init];

//send properties to your view controller
         detailedViewController.property1 = someProperty1;
         detailedViewController.property2 = someProperty2;

//push it to the navigationController
         [ pushViewController:detailedViewController animated:YES];
         ;
    }
</code></pre>

<p>我确实建议您从使用苹果示例开始,它们很棒,而且数量很多:</p>

<p> <a href="http://developer.apple.com/library/ios/#samplecode/TableViewSuite/Introduction/Intro.html%23//apple_ref/doc/uid/DTS40007318" rel="noreferrer noopener nofollow">http://developer.apple.com/library/ios/#samplecode/TableViewSuite/Introduction/Intro.html%23//apple_ref/doc/uid/DTS40007318</a> </p>

<p>祝你好运</p></p>
                                   
                                                <p style="font-size: 20px;">关于iphone - 当用户单击一行时,如何移动到另一个 ViewController ?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/5102122/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/5102122/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iphone - 当用户单击一行时,如何移动到另一个 View Controller ?