码迷,mamicode.com
首页 >  
搜索关键字:currentdevice    ( 174个结果
xcode针对不同IOS版本的代码编译问题
有时候在项目中为了兼容低版本IOS系统,通常会针对不同的OS版本写不同的代码,例如:#define IS_IOS7_OR_LATER ([[UIDevice currentDevice].systemVersion floatValue] >=7.0)if(IS_IOS7_OR...
分类:移动开发   时间:2014-10-28 13:39:29    阅读次数:232
iOS 判断设备为iPhone还是iPad
if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone) { self.viewController = [[[_ViewController alloc] initWithNibName:@"_ViewController_iPhone" bundle:nil] autorele...
分类:移动开发   时间:2014-10-23 22:50:34    阅读次数:203
iOS 调用地图导航
在IOS6.0系统后,兼容iOS5.0与iOS6.0地图导航,需要分两个步骤#define SYSTEM_VERSION_LESS_THAN(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch...
分类:移动开发   时间:2014-10-22 12:39:37    阅读次数:290
iOS 判断iphone ipad 系统版本
#define ScreenWidth ([[UIScreen mainScreen] bounds].size.width) #define ScreenHeight ([[UIScreen mainScreen] bounds].size.height) #define iOS8 ([[[UIDevice currentDevice] systemVersion] floatValu...
分类:移动开发   时间:2014-10-13 17:51:40    阅读次数:129
适配iOS7uinavigationbar遮挡tableView的问题
//适配iOS7uinavigationbar遮挡tableView的问题 if([[[UIDevice currentDevice]systemVersion]floatValue]>=7.0) { self.edgesForExtendedLayout = UIRectEdgeNone...
分类:移动开发   时间:2014-10-10 19:01:24    阅读次数:135
iOS 获取设备信息
- (void)viewDidLoad{ [super viewDidLoad]; //获取当前设备操作系统及版本 NSString *systemName =[[UIDevice currentDevice]systemName]; NSString *system =[[UIDevice...
分类:移动开发   时间:2014-10-10 17:54:04    阅读次数:203
iOS系统版本判断方法
在iOS系统中提供了系统版本的判断函数,因此我们可以很容易得到他的当前系统版本:[[UIDevice currentDevice] systemName];//系统名字[[UIDevice currentDevice] systemVersion];//系统版本号[[UIDevice current...
分类:移动开发   时间:2014-10-10 17:07:34    阅读次数:173
iOS获取电量方法
ios简单的方法:[UIDevice currentDevice].batteryMonitoringEnabled = YES;doubledeviceLevel = [UIDevice currentDevice].batteryLevel;获取当前剩余电量, 我们通常采用上述方法。这也是苹果官...
分类:移动开发   时间:2014-10-10 17:05:54    阅读次数:315
registerForRemoteNotificationTypes: is not supported in iOS 8.0 and
注册方式: if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 8.0) { [[UIApplication sharedApplication] registerUserNotificationSettings:[UIUserNotificationSettings ...
分类:移动开发   时间:2014-10-10 15:13:54    阅读次数:173
iOS 调用地图导航
注意:本文章下的代码有个别变量未知,所以是不能直接跑通的,我也是转别人的在IOS6.0系统后,兼容iOS5.0与iOS6.0地图导航,需要分两个步骤#define SYSTEM_VERSION_LESS_THAN(v) ([[[UIDevice currentDevice] systemVersio...
分类:移动开发   时间:2014-10-05 02:18:17    阅读次数:497
174条   上一页 1 ... 13 14 15 16 17 18 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!