我有一个表格视图,并且我有一个方法,每次单击一行时都会调用它。但问题是,前几次我点击这些行没有任何反应,在 3 次之后它按预期工作。什么会导致这种情况?这是代码:
- (void) tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath
{
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Hey, do you see the disclosure button?"
message:@"Touch that to drill down instead"
delegate:nil
cancelButtonTitle:@"Won't happen again"
otherButtonTitles: nil];
[alert show];
}