仿照 iOS 内置的邮件 App 点击新建后弹出一个编辑邮件的 ViewController 的效果
#import "QIUPresentKit.h"
UIViewController *nextController = [self.storyboard instantiateViewControllerWithIdentifier:@"EditViewController"];
QIUPresentViewController *controller = [[QIUPresentViewController alloc] initWithViewController:nextController];
// nextController.topGuide = 80;
// nextController.scale = 0.9;
// nextController.showDuration = 0.1
// nextController.dismissDuration = 0.3
[self presentViewController:controller animated:YES completion:nil];
// if you want to presentViewController without animated, use below code:
// nextController.showDuration = 0.0
// [self presentViewController:controller animated:YES completion:nil];
iOS 8.0
SUISeagull is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod "QIUPresentKit"
QiuFeng, qfviolethill@163.com
SUISeagull is available under the MIT license. See the LICENSE file for more info.