mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-23 06:08:07 +00:00
Fix the contact view in landscape for ipad
This commit is contained in:
parent
1fec7d8a5c
commit
19ba5d5ddf
1 changed files with 10 additions and 3 deletions
|
|
@ -162,7 +162,14 @@ static UICompositeViewDescription *compositeDescription = nil;
|
|||
self.tableView.frame = subViewFrame;
|
||||
|
||||
self.tableView.dataSource = self.tableController;
|
||||
self.tableView.delegate = self.tableController;
|
||||
self.tableView.delegate = self.tableController;
|
||||
|
||||
self.tableView.autoresizingMask = UIViewAutoresizingFlexibleHeight |
|
||||
UIViewAutoresizingFlexibleWidth |
|
||||
UIViewAutoresizingFlexibleTopMargin |
|
||||
UIViewAutoresizingFlexibleBottomMargin |
|
||||
UIViewAutoresizingFlexibleLeftMargin |
|
||||
UIViewAutoresizingFlexibleRightMargin;
|
||||
|
||||
[self.view addSubview:tableView];
|
||||
[self update];
|
||||
|
|
@ -319,7 +326,7 @@ static UICompositeViewDescription *compositeDescription = nil;
|
|||
|
||||
|
||||
- (void)viewDidUnload {
|
||||
[self setToolBar:nil];
|
||||
[super viewDidUnload];
|
||||
[self setToolBar:nil];
|
||||
[super viewDidUnload];
|
||||
}
|
||||
@end
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue