获得了一个ABPeoplePickerNavigationController,在显示之后我想搜索单元格并找到文本,即显示的用户名。然后我想检查用户是否包含在coredata NSSet中...我的问题,我似乎无法从单元格中取回文本只是Null。我知道细胞是正确的,因为我可以愉快地使用细胞附件类型。显示示例代码:
[self presentViewController:picker animated:YES completion:^{
// Find the picker tableViewController
UIView *view = picker.topViewController.view;
UITableView *tableView = nil;
for(UIView *uv in view.subviews)
{
if([uv isKindOfClass:[UITableView class]])
{
tableView = (UITableView*)uv;
break;
}
}
// Check tableView not Null then Loop occurs here with this code in it always giving me Null
// I know the tables populated and displayed at this point so why Null ?
.......
NSString *a = [[[tableView cellForRowAtIndexPath:[NSIndexPath indexPathForItem:0 inSection:x]] detailTextLabel] text];
.......
}];
答案 0 :(得分:0)
开始认为这可能与ios6隐私控制有关吗?