gpt4 book ai didi

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

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:49:34 24 4
gpt4 key购买 nike

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

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

(我愿意在常规 View Controller 上使用 2 个按钮而不是表格来实现它。)

最佳答案

在你的类中采用 UITableViewDelegate 协议(protocol),并实现

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
[tableView deselectRowAtIndexPath:indexPath animated:YES];

if ((indexPath.section == customSection) && (indexPath.row == customRow))
{
// Your custom action here
}
}

关于ios - 如何告诉静态单元格在 Xcode 中打开特定 View ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11317468/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com