系统版本判断
allanGold
这个作者很懒,什么都没留下…
展开
-
关于iOS 弃用API适配系统版本的最佳写法
#if __IPHONE_OS_VERSION_MIN_REQUIRED // Check if new API is not available if (![someData respondsToSelector:@selector(base64EncodedDataWithOptions:)]) { // Use the old API base64String = [someData原创 2016-08-01 10:10:09 · 2625 阅读 · 0 评论 -
系统版本判断(一)
判断系统版本的方法(用于方法的系统适配) 有一些方法在很久之前就有的,在高版本的系统上使用可能会有问题,此时就需要判断用户的系统版本来选择执行哪一种方法了. 例如 //在iOS8之前是使用这个方法获取NSCalendar *的,在iOS8,iOS9上使用可能会有问题. NSCalendar *calendar = [NSCalendar currentCalendar];转载 2016-09-19 17:41:59 · 559 阅读 · 0 评论 -
IOS7 导航栏适配
http://www.tuicool.com/articles/FFJv2eF转载 2017-02-26 21:09:53 · 743 阅读 · 0 评论