作为我的第一个 Objective-C 项目,我需要在didSelectRowAtIndexPath
您可以忽略第二行显示“Sikkerhed”的所有内容。UITableView
我想要的只是一个新视图,当我按下我的一个单元格时,它会随着键盘一起弹出。正在设置的数据和显示的文本将根据选择的行而改变。我该如何实施这样的事情?我需要一个新UIViewController
的view
吗?
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
// Code
}