DSLTransition 1.0.0

DSLTransition 1.0.0

测试测试
语言语言 Obj-CObjective C
许可证 MIT
发布最新发布2017年12月

邓顺来 维护。



  • 邓顺来

DSLTransition

自定义 UIViewController 的 present 转场

使用:

#import "UIViewController+DSLTransition.h"

NextViewController *vc = [[NextViewController alloc] init];
//设置转场类型,0是系统默认的转场
vc.dsl_transitionType = 1;
//present方法不变
[self presentViewController:vc animated:YES completion:nil];
//dismiss方法不变
[self dismissViewControllerAnimated:YES completion:nil];

其他参数设置请参考 Demo