当我遇到一个奇怪的问题时,我将我的项目调整为调整 ios7:在 ios7 中没有调用委托方法“tableView:didSelectRowAtIndexPath:”,它在以前的 ios 版本中运行良好。我想知道是否在 ios7 中更改了某些特定属性这是编码:
- (void)viewDidLoad {
[super viewDidLoad];
[self.tableView setDelegate:self];
[self.tableView setDataSource:self];
[self.tableView setAllowsMultipleSelection:NO];
[self.tableView setMultipleTouchEnabled:NO];
}
- (void)tableView:(UITableView *)sender didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
[sender deselectRowAtIndexPath:indexPath animated:YES];
_currentContact = [contactArr objectAtIndex:indexPath.row];
if ([_currentContact.accountNPC hasPrefix:@"0"]) {
isContactToNPC = NO;
}else{
isContactToNPC = YES;
}
....
}