码迷,mamicode.com
首页 >  
搜索关键字:currentdevice    ( 174个结果
给苹果商店里的产品来一个评价
// 系统大于等于7.0 if ([UIDevice currentDevice].systemVersion.floatValue >= 7.0) { url = [NSURL URLWithString:@"itms-apps://itunes.apple.com/app/id88888...
分类:移动开发   时间:2014-08-07 18:09:20    阅读次数:251
ios ios7 取消控件往上移
//判断是否为ios7 取消控件往上移     if ([[UIDevice currentDevice].systemVersion doubleValue] >= 7.0) {         self.edgesForExtendedLayout = UIRectEdgeNone;     }...
分类:移动开发   时间:2014-08-07 15:47:20    阅读次数:197
ios7.1后setting中没有开启相机服务应用程序相机预览黑屏问题
if ( [[[UIDevice currentDevice] systemVersion] floatValue] >= 7.0){ //check whether the permission open for user in settings AVAuthorizationStatus au....
分类:移动开发   时间:2014-08-05 13:32:19    阅读次数:234
KSImageNamed-Xcode-master
当我们使用imageName这个方法时,我们可以看到图片的提示,而当我们自己写一个UIImage 的扩展的时候,需要用到资源图片时,经常就没有图片资源的提示,例如下面的方法, #define iOS7 ([[UIDevice currentDevice...
分类:其他好文   时间:2014-07-22 08:28:34    阅读次数:668
如何判断 ios设备的类型(iphone,ipod,ipad)
-(bool)checkDevice:(NSString*)name { NSString* deviceType = [UIDevice currentDevice].model; NSLog(@"deviceType = %@", deviceType); NSRange range = [deviceType rangeOfString:name]; return range.l...
分类:移动开发   时间:2014-07-18 16:37:54    阅读次数:229
XCode4.5.6,iOS6.1下测试 判断当前设备,及其联网状态等; 关于设备插上后XCode检测不出的情况的说明
目录[-]一、判断设备二、判断网络连接状态三、设备不显示的解决办法一、判断设备01//设备名称02return[UIDevice currentDevice].name;0304//设备型号,只可得到是何设备,无法得到是第几代设备05return[UIDevice currentDevice].mo...
分类:移动开发   时间:2014-07-16 23:04:51    阅读次数:250
IOS开发中常用的宏定义
有些时候,我们需要将代码简洁化,这样便于读代码。我们可以将一些不变的东东抽取出来,将变化的东西作为参数。定义为宏,这样在写的时候就简单多了。 下面例举了一些常用的宏定义和大家分享: 1. 判断设备的操作系统是不是ios7 #define IOS7 ( [[[UIDevice currentDevice].systemVersion doubleValue] >= 7.0] ) ...
分类:移动开发   时间:2014-07-09 09:45:47    阅读次数:184
tableview适配
//#define IOS7_OR_LATER ( [[[UIDevice currentDevice] systemVersion] compare:@"7.0"] != NSOrderedAscending )- (void)setFrame:(CGRect)frame { if (I...
分类:其他好文   时间:2014-06-22 23:54:13    阅读次数:363
iOS开发- 获取精确剩余电量
[UIDevice currentDevice].batteryMonitoringEnabled = YES; double deviceLevel = [UIDevice currentDevice].batteryLevel;获取当前剩余电量, 我们通常采用上述方法。这也是苹果官方文档提供的。它返回的是0.00-1.00之间的浮点值。  另外, -1.00表示模拟器。貌似这个方法不错, 也很...
分类:移动开发   时间:2014-06-01 14:57:31    阅读次数:275
174条   上一页 1 ... 15 16 17 18 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!