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];
.......
}];