我们如何为tableviews中的单元格创建警报。用于实现它们的方法是什么
答案 0 :(得分:1)
快讯?你需要更具体。如果你在谈论UIAlertView
,你可以这样做:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
UIAlertView *alert =
[[UIAlertView alloc] initWithTitle: aTitle
message: @"My message"
delegate: self
cancelButtonTitle: @"OK"
otherButtonTitles: nil];
[alert show];
[alert release];
}
单击单元格时显示警告。另请注意,您将alertView的委托设置为self。因此,如果您想在用户选择按钮后添加一些逻辑,那么您的班级需要遵守UIAlerViewDelegate
。