菜鸟教程小白 发表于 2022-12-12 21:50:13

ios - 如何告诉静态单元格在 Xcode 中打开特定 View ?


                                            <p><p>我有一个带有两个静态单元格的表格 ViewController 。每一个,当点击时,应该打开一个预定的 View 。每个单元格都应该像标签栏中的一个元素一样,如果这更容易理解的话。我尝试使用 push segue 将每个单元格连接到其 View ,但看起来当我这样做时, Storyboard 正在为整个表格设置推送。 </p>

<p>如何将每个单元格连接到打开的唯一 View ?</p>

<p>(我愿意在常规 ViewController 上使用 2 个按钮来实现此功能,而不是表格。)</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>在你的类中采用 UITableViewDelegate 协议(protocol),并实现</p>

<pre><code>- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    ;

    if ((indexPath.section == customSection) &amp;&amp; (indexPath.row == customRow))
    {
      // Your custom action here
    }
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何告诉静态单元格在 Xcode 中打开特定 View ?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/11317468/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/11317468/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何告诉静态单元格在 Xcode 中打开特定 View ?