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:
Scott Ludwig 2016-01-01 14:31:25 -08:00
parent 636484ea31
commit d7710255aa

View File

@ -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 |