码迷,mamicode.com
首页 >  
搜索关键字:currentdevice    ( 174个结果
获取iOS系统版本 --- UIDevice的使用
UIDevice类是一个单例,其唯一的实例( [UIDevice currentDevice] ) 代表了当前使用的设备。通过这个实例,可以获得设备的相关信息(包括系统名称,版本号,设备模式等等)。也可以使用使用该实例来监测设备的特征(比如物理方向)。NSString *strName = [[UI...
分类:移动开发   时间:2014-09-29 11:52:10    阅读次数:179
常用宏定义
iOS6和iOS7的适配:#define iOS7 ([[UIDevice currentDevice].systemVersion doubleValue] >= 7.0)#endif根据RGB设置一个全局背景色://2.获得RGB#define YLYColor(r,g,b) [UIColor ...
分类:其他好文   时间:2014-09-20 15:59:08    阅读次数:273
[UIDevice currentDevice]
获取iphone的系统信息使用[UIDevice currentDevice],信息如下: [[UIDevice currentDevice] systemName]:系统名称,如iPhone OS [[UIDevice currentDevice] systemVersion]:系统版本,如iOS 8.0 [[UIDevice currentDevice] mode...
分类:其他好文   时间:2014-09-19 17:38:55    阅读次数:144
ios8,xcode6 周边
NSBundle.mainBundle().infoDictionaryiOS 8中带按钮的推送代码 1 if ( UIDevice.currentDevice().systemVersion.hasPrefix("7") ){ 2 3 applic...
分类:移动开发   时间:2014-09-19 15:27:45    阅读次数:185
IOS - [UIDevice currentDevice] name/model/localizedMode/systemName/systemVersion...../userInterfaceIdiom
+ (UIDevice *)currentDevice;@property(nonatomic,readonly,retain) NSString *name; // e.g. "My iPhone"@property(nonatomic,readonly,retain) NSStri...
分类:移动开发   时间:2014-09-12 16:45:03    阅读次数:336
iOS处理动态字符串长度(兼容6、7)
NSString *saved = _name.text;     CGSize size = CGSizeZero;     if ([[[UIDevice currentDevice] systemVersion] floatValue] >=7.0) {         size = [saved boundingRectWithSize:CGSizeMake(150, 70) ...
分类:移动开发   时间:2014-09-11 11:10:41    阅读次数:170
iOS语音播放之切换听筒和扬声器的方法解决方案
[[UIDevice currentDevice] setProximityMonitoringEnabled:YES]; //建议在播放之前设置yes,播放结束设置NO,这个功能是开启红外感应 //添加监听 [[NSNotificationCenter defaultCenter] addObserver:self                          ...
分类:移动开发   时间:2014-08-29 18:27:48    阅读次数:280
ios status bar 字体颜色
1,if ([[[UIDevice currentDevice] systemVersion] floatValue] < 7.0) { [application setStatusBarStyle:UIStatusBarStyleDefault]; } else { [applica...
分类:移动开发   时间:2014-08-29 12:35:47    阅读次数:164
iOS 获取手机的型号,系统版本,软件名称,软件版本
转载自:http://www.2cto.com/kf/201210/162333.html网上搜索出来的,记录下来以后使用方便:[java]//手机序列号 NSString* identifierNumber = [[UIDevice currentDevice] uniqueIdentifier]...
分类:移动开发   时间:2014-08-14 20:29:19    阅读次数:207
iOS7新特性
ios7.0中视图控制器中视图坐标布局问题 if ([[[UIDevice currentDevice] systemVersion] floatValue]>=7.0) { self.edgesForExtendedLayout=UIRectEdgeNone;//ios 7中不调整屏...
分类:移动开发   时间:2014-08-12 18:30:44    阅读次数:211
174条   上一页 1 ... 14 15 16 17 18 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!