forked from mirrors/linphone-iphone
fix ui
This commit is contained in:
parent
4ceb1b2c99
commit
f4bf717ffe
2 changed files with 5 additions and 1 deletions
|
|
@ -129,7 +129,6 @@
|
|||
|| (contact.friend && linphone_presence_model_get_basic_status(linphone_friend_get_presence_model(contact.friend)) == LinphonePresenceBasicStatusOpen);
|
||||
cell.linphoneImage.hidden = !linphoneContact;
|
||||
cell.addressLabel.text = key;
|
||||
|
||||
cell.selectedImage.hidden = ![_contactsGroup containsObject:cell.addressLabel.text];
|
||||
|
||||
return cell;
|
||||
|
|
|
|||
|
|
@ -67,6 +67,11 @@ static UICompositeViewDescription *compositeDescription = nil;
|
|||
_tableController.searchBar.frame.origin.y + _tableController.searchBar.frame.size.height,
|
||||
_tableController.tableView.frame.size.width,
|
||||
_tableController.tableView.frame.size.height + _collectionView.frame.size.height);
|
||||
} else {
|
||||
_tableController.tableView.frame = CGRectMake(_tableController.tableView.frame.origin.x,
|
||||
_collectionView.frame.origin.y + _collectionView.frame.size.height,
|
||||
_tableController.tableView.frame.size.width,
|
||||
_tableController.tableView.frame.size.height);
|
||||
}
|
||||
[_collectionView reloadData];
|
||||
_tableController.isForEditing = _isForEditing;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue