首先要干这些事 下面的方法亲测可用 DNLogFUNC //初始化位置管理对象 _locationManager = [[CLLocationManager alloc] init]; //请求用户授权 if ([[[UIDevice currentDevice] systemVersion] fl ...
分类:
移动开发 时间:
2016-07-12 17:31:04
阅读次数:
249
====================================================== 当需要判断iOS系统版本的时候,相信很多人都会这么干: #define SystemVersion [[UIDevice currentDevice] systemVersion].floa ...
分类:
移动开发 时间:
2016-07-06 23:26:11
阅读次数:
816
#define IS_IOS8_0 ([[[UIDevice currentDevice] systemVersion] floatValue] < 8.0) #define WIDTH [UIScreen mainScreen].bounds.size.width #define HEIGHT [ ...
分类:
移动开发 时间:
2016-06-30 18:17:10
阅读次数:
156
有些时候,我们需要将代码简洁化,这样便于读代码。我们可以将一些不变的东东抽取出来,将变化的东西作为参数。定义为宏,这样在写的时候就简单多了。下面例举了一些常用的宏定义和大家分享:1. 判断设备的操作系统是不是ios71.#define IOS7 ( [[[UIDevice currentDevice ...
分类:
移动开发 时间:
2016-06-29 19:04:30
阅读次数:
270
如果没有是storyboard进行界面设计,在ios7之后会遇到rootviewcontroller的view被navigationbar遮盖的问题,其实很好解决- (void)viewDidLoad { [super viewDidLoad]; if( ([[[UIDevice currentDe... ...
分类:
其他好文 时间:
2016-06-22 22:07:19
阅读次数:
170
单一控制器的横竖屏切换 if ([[UIDevice currentDevice] respondsToSelector:@selector(setOrientation:)]) { SEL selector = NSSelectorFromString(@"setOrientation:"); N ...
分类:
其他好文 时间:
2016-06-20 12:35:44
阅读次数:
154
typedef NS_ENUM(NSInteger, UIDeviceOrientation) //设备方向 { UIDeviceOrientationUnknown, UIDeviceOrientationPortrait, // 竖向,头向上 UIDeviceOrientationPortrai ...
分类:
其他好文 时间:
2016-06-16 17:43:34
阅读次数:
230
获取ios设备系统信息的方法 之 [UIDevice currentDevice] 获取iphone的系统信息使用[UIDevice currentDevice],信息如下: [[UIDevice currentDevice] systemName]:系统名称,如iPhone OS [[UIDevi ...
分类:
移动开发 时间:
2016-06-06 10:19:22
阅读次数:
195
if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 4.0) { } ...
分类:
其他好文 时间:
2016-05-27 07:05:49
阅读次数:
155
1、获取设备的信息
[objc] view
plain copy
UIDevice *device = [[UIDevice alloc] int];
NSString *name = device.name; //获取设备所有者的名称
NSString *model = device.name; //获取设备的类...
分类:
移动开发 时间:
2016-05-03 18:21:53
阅读次数:
229