In the UI for adding people, add a + icon
This commit is contained in:
manuroe
2016-03-25 08:53:00 +01:00
parent bb4386f89d
commit 46d12292cd
5 changed files with 21 additions and 1 deletions
@@ -650,7 +650,15 @@
[self customizeContactCell:participantCell atIndexPath:indexPath];
[participantCell render:contact];
// The search displays contacts to invite. Add a plus icon to the cell
// in order to make it more understandable for the end user
if (indexPath.section == searchResultSection)
{
[participantCell.customAccessoryView addSubview:[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"plus_icon"]]];
participantCell.showCustomAccessoryView = YES;
}
cell = participantCell;
}