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