cezarywojcik / CWPopup

CWPopup category to present popup view controllers
MIT License
289 stars 62 forks source link

Add support for UIModalTransitionStyleCrossDissolve #26

Closed k06a closed 9 years ago

k06a commented 9 years ago

Thats my use case:

self.useBlurForPopup = YES;
UIViewController *controller = [self.storyboard instantiateViewControllerWithIdentifier:@"vc_mode"];
self.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;
[self presentPopupViewController:controller animated:YES completion:nil];
k06a commented 9 years ago

@cezarywojcik are there any problems with this PR?

cezarywojcik commented 9 years ago

Sorry; I've been busy. Merging!

k06a commented 9 years ago

@cezarywojcik Are you planning new release? Right now I need to write:

pod 'CWPopup', :head

to use this feature. I think new feature should be included in 1.3 version.