Skip to content

Commit

Permalink
Fix iOS 6 layout (issue mattgemmell#69)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam Williams committed Oct 20, 2012
1 parent d53f8de commit ea5fee6
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Classes/MGSplitViewController.m
Expand Up @@ -142,6 +142,9 @@ - (void)setup
_dividerView.splitViewController = self; _dividerView.splitViewController = self;
_dividerView.backgroundColor = MG_DEFAULT_CORNER_COLOR; _dividerView.backgroundColor = MG_DEFAULT_CORNER_COLOR;
_dividerStyle = MGSplitViewDividerStyleThin; _dividerStyle = MGSplitViewDividerStyleThin;

// Fix for iOS 6 layout issue
self.view.autoresizesSubviews = NO;
} }




Expand Down

0 comments on commit ea5fee6

Please sign in to comment.