如何在xcode的表视图中显示细节

时间:2012-12-18 11:13:32

标签: objective-c uitableview

如何在xcode的表格视图中创建10行,并在点击它们时将详细信息显示为提醒?

1 个答案:

答案 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];
}