我有两个表视图,当用户单击第一个表的一个单元格时,会出现第二个表视图。但我不知道如何用第二个中的选定值更新第一个视图控制器。拜托,你能分享任何链接或例子吗?
谢谢
我有两个表视图,当用户单击第一个表的一个单元格时,会出现第二个表视图。但我不知道如何用第二个中的选定值更新第一个视图控制器。拜托,你能分享任何链接或例子吗?
谢谢
您可以像这样区分 tableView...这里我采用两个 tableView 即 tblMain1 和 tableDetail
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
// Return the number of rows in the section.
if (tableView==tblMain)
{
return [arrOfProfileView count];
}
else
{
return [arrOfProfileView2 count];
}
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:nil];
if (cell == nil)
{
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:nil] autorelease];
}
if (tableView==tblMain)
{
//write code here for your mainTable.
}
else
{
//write code here for your detailTable.
}
return cell
}
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
if (tableView==tblMain1)
{
//write code here
[tableDetail reloadData];
}
else{
//write code here
[tblMain1 reloadData];
}
}