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
获取iphone的系统信息使用[UIDevice currentDevice],信息如下:
[[UIDevice currentDevice] systemName]:系统名称,如iPhone OS
[[UIDevice currentDevice] systemVersion]:系统版本,如iOS 8.0
[[UIDevice currentDevice] mode...
分类:
其他好文 时间:
2014-09-19 17:38:55
阅读次数:
144
NSBundle.mainBundle().infoDictionaryiOS 8中带按钮的推送代码 1 if ( UIDevice.currentDevice().systemVersion.hasPrefix("7") ){ 2 3 applic...
分类:
移动开发 时间:
2014-09-19 15:27:45
阅读次数:
185
+ (UIDevice *)currentDevice;@property(nonatomic,readonly,retain) NSString *name; // e.g. "My iPhone"@property(nonatomic,readonly,retain) NSStri...
分类:
移动开发 时间:
2014-09-12 16:45:03
阅读次数:
336
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
[[UIDevice currentDevice] setProximityMonitoringEnabled:YES]; //建议在播放之前设置yes,播放结束设置NO,这个功能是开启红外感应
//添加监听
[[NSNotificationCenter defaultCenter] addObserver:self
...
分类:
移动开发 时间:
2014-08-29 18:27:48
阅读次数:
280
1,if ([[[UIDevice currentDevice] systemVersion] floatValue] < 7.0) { [application setStatusBarStyle:UIStatusBarStyleDefault]; } else { [applica...
分类:
移动开发 时间:
2014-08-29 12:35:47
阅读次数:
164
转载自:http://www.2cto.com/kf/201210/162333.html网上搜索出来的,记录下来以后使用方便:[java]//手机序列号 NSString* identifierNumber = [[UIDevice currentDevice] uniqueIdentifier]...
分类:
移动开发 时间:
2014-08-14 20:29:19
阅读次数:
207
ios7.0中视图控制器中视图坐标布局问题 if ([[[UIDevice currentDevice] systemVersion] floatValue]>=7.0) { self.edgesForExtendedLayout=UIRectEdgeNone;//ios 7中不调整屏...
分类:
移动开发 时间:
2014-08-12 18:30:44
阅读次数:
211