0

我需要 UIAlertView 具有与打开它的单元格相同的标题。我已经有一个 NSArray 的名字。因此,例如,如果我打开一个名为 White 的单元格,UIAlertView 的标题应该是 White。每个打开的单元格都必须有一个特定的 AlertView 标题。

我已经尝试实现 self.(name of array) 方法,当我这样做时似乎不起作用。

任何帮助,将不胜感激。谢谢

4

1 回答 1

0

这应该可以帮助您:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:[myArray objectAtIndex:indexPath.row] message:@"message" delegate:self cancelButtonTitle:@"cancel" otherButtonTitles:nil, nil];
    [alert show];
}
于 2012-07-26T19:01:10.463 回答