mirror of
https://github.com/spiffcode/hostile-takeover.git
synced 2026-04-27 13:55:05 -06:00
Fix width/height of chatviewcontroller
Still layout issue of the toolbar items but that can be fixed later. It's functional now.
This commit is contained in:
parent
636484ea31
commit
d7710255aa
@ -91,8 +91,8 @@
|
||||
- (void)loadView
|
||||
{
|
||||
// Create parent view that subviews go into
|
||||
CGRect frame = CGRectMake(0, 0, parent_.frame.size.height,
|
||||
parent_.frame.size.width);
|
||||
CGRect frame = CGRectMake(0, 0, parent_.frame.size.width,
|
||||
parent_.frame.size.height);
|
||||
view_ = [[UIView alloc] initWithFrame:frame];
|
||||
view_.autoresizesSubviews = YES;
|
||||
view_.autoresizingMask = UIViewAutoresizingFlexibleHeight |
|
||||
|
||||
Loading…
Reference in New Issue
Block a user