如何在xcode
的表格视图中创建10行,并在点击它们时将详细信息显示为提醒?
答案 0 :(得分:1)
您必须在didselectRowAtIndexPath
方法
arr是NSMutablearray
..
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
UIAlertView *alert = [[UIAlertView alloc] initWithTitle: @"Detail"
message:[arr objectAtIndex:indexPath.row]
delegate: nil
cancelButtonTitle:@"OK"
otherButtonTitles:nil];
[alert show];
}