标签:com class blog style div code log art color rgb view
1. 版本控制 -- 是否响应某个方法 、查看当前系统版本。
eg:
[self respondsToSelector:@Selector(presentModalViewController:animated:)]//Yes:表示响应这个方法
[[UIDevice currentDevice].systemVersion floatValue] < 7.0 //判断当前系统是否小于7.0
2. 模态视图动画设置
eg:
ModalViewController *modalVC = [[ModalViewController alloc] init]; modalVC.modalTransitionStyle = UIModalTransitionStylePartialCurl; [self presentViewController:modalVC animated:YES completion:^ }];
[学习笔记]iphone学习小技巧,码迷,mamicode.com
标签:com class blog style div code log art color rgb view
原文地址:http://www.cnblogs.com/lengxuanfei/p/3698311.html