如何将第一个 tableview 行数据传递给第二个详细视图行
我用
[cell setAccessoryType:UITableViewCellAccessoryDetailDisclosureButton];
或者
cell.accessoryType = UITableViewCellAccessoryDetailDisclosureButton;
在每个单元格中显示披露按钮
可以,我还添加了动作
- (void)tableView:(UITableView *)tableViewaccessoryButtonTappedForRowWithIndexPath:(NSIndexPath *)indexPath{
NSLog(@"disclosure button %@ touched",indexPath.row);
}
但是当我触摸披露按钮时,控制台中什么也没有显示
比我添加动作
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
// carry Alarm Name text into sub-table-view to look for detail time and text info
NSLog(@"Alarm Name = %@", [alarmName objectAtIndex:indexPath.row]);
NSLog(@"Index Path Raw# = %i", indexPath.row);
// Navigation logic may go here. Create and push another view controller.
AlarmDetailTableViewController *detailViewController = [[AlarmDetailTableViewController alloc] initWithNibName:@"AlarmTableViewController" bundle:[NSBundle mainBundle]];
// ...
// Pass the selected object to the new view controller.
[self.navigationController pushViewController:detailViewController animated:YES];
[detailViewController release];
detailViewController = nil;
}
它可以在控制台模式下通知
但我认为当我触摸第一级 TableView 中的任何行时,它总是出现相同的详细信息视图
如何使用第一级的数据显示新的详细视图?
例如
使 tableView1.row0.text = detail view.title
并在标题下显示其他数据
如果你需要代码我可以上传
我的老板说这不是什么大秘密......
非常感谢