Created
May 16, 2014 13:04
-
-
Save obyknovenius/97bc9520de4e208e8468 to your computer and use it in GitHub Desktop.
Custom size of modal view controller on iPad.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| - (void)viewWillLayoutSubviews | |
| { | |
| [super viewWillLayoutSubviews]; | |
| self.view.superview.bounds = CGRectMake(0, 0, 100.0f, 100.0f); | |
| [[self.view.superview layer] setCornerRadius:5.0f]; | |
| [[self.view.superview layer] setMasksToBounds:YES]; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment