得到一个 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];
.......
}];