如何像 viber 一样显示 ABPeoplePickerNavigationController,其中 viber 图标出现在那些已经在使用它的联系人面前。请检查屏幕截图。这是我正在尝试做但面临问题的代码...
ABPeoplePickerNavigationController *picker = [[ABPeoplePickerNavigationController alloc] init];
picker.navigationBar.tintColor = [UIColor colorWithRed:33.0f/255.0f green:54.0f/255.0f blue:63.0f/255.0f alpha:0.20f];
picker.peoplePickerDelegate = self;
[self presentModalViewController:picker animated:YES];
UIView *view = picker.topViewController.view;
UITableView *tableView = nil;
for(UIView *uv in view.subviews)
{
if([uv isKindOfClass:[UITableView class]])
{
tableView = (UITableView*)uv;
UIImageView *imageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"logoIcon"]];
NSLog(@"NumberOfSection<--->%d",[tableView numberOfSections]);
NSLog(@"NumberOfRows=%dInSection=%d",[tableView numberOfRowsInSection:i], i);
for (int i = 0; i < [tableView numberOfSections]; i++)
{
for (int j = 0; j < [tableView numberOfRowsInSection:i]; j++)
{
UITableViewCell *celll = [tableView cellForRowAtIndexPath:[NSIndexPath indexPathForRow:j inSection:i]];
celll.accessoryView = imageView;
NSLog(@"currentIndex=>%@",celll.accessoryView);
celll = nil;
}
}
break;
}
}