Skip to content

Instantly share code, notes, and snippets.

@g-1
Last active August 29, 2015 14:05
Show Gist options
  • Save g-1/0d1cbaed9e8a12daaf4f to your computer and use it in GitHub Desktop.
Save g-1/0d1cbaed9e8a12daaf4f to your computer and use it in GitHub Desktop.
iOSでポップアップビューを実装する(with Storyboard) ref: http://qiita.com/g-1/items/970d9101bdd14cbceffd
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view from its nib.
self.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;
}
- (void)viewDidLoad
{
[super viewDidLoad];
self.modalPresentationStyle = UIModalPresentationCurrentContext;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment