我有一个带有两个静态单元格的表格 View Controller 。每一个,当点击时,应该打开一个预定的 View 。每个单元格都应该像标签栏中的一个元素一样,如果这更容易理解的话。我尝试使用 push segue 将每个单元格连接到其 View ,但看起来当我这样做时, Storyboard 正在为整个表格设置推送。
如何将每个单元格连接到打开的唯一 View ?
(我愿意在常规 View Controller 上使用 2 个按钮来实现此功能,而不是表格。)
Best Answer-推荐答案 strong>
在你的类中采用 UITableViewDelegate 协议(protocol),并实现
- (void)tableViewUITableView *)tableView didSelectRowAtIndexPathNSIndexPath *)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/
|