Skip to content

Instantly share code, notes, and snippets.

@obyknovenius
Created May 16, 2014 13:04
Show Gist options
  • Select an option

  • Save obyknovenius/97bc9520de4e208e8468 to your computer and use it in GitHub Desktop.

Select an option

Save obyknovenius/97bc9520de4e208e8468 to your computer and use it in GitHub Desktop.
Custom size of modal view controller on iPad.
- (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