有时候在项目中为了兼容低版本IOS系统,通常会针对不同的OS版本写不同的代码,例如:#define IS_IOS7_OR_LATER ([[UIDevice currentDevice].systemVersion floatValue] >=7.0)if(IS_IOS7_OR...
分类:
移动开发 时间:
2014-10-28 13:39:29
阅读次数:
232
if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone) {
self.viewController = [[[_ViewController alloc] initWithNibName:@"_ViewController_iPhone" bundle:nil] autorele...
分类:
移动开发 时间:
2014-10-23 22:50:34
阅读次数:
203
在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
#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的问题 if([[[UIDevice currentDevice]systemVersion]floatValue]>=7.0) { self.edgesForExtendedLayout = UIRectEdgeNone...
分类:
移动开发 时间:
2014-10-10 19:01:24
阅读次数:
135
- (void)viewDidLoad{ [super viewDidLoad]; //获取当前设备操作系统及版本 NSString *systemName =[[UIDevice currentDevice]systemName]; NSString *system =[[UIDevice...
分类:
移动开发 时间:
2014-10-10 17:54:04
阅读次数:
203
在iOS系统中提供了系统版本的判断函数,因此我们可以很容易得到他的当前系统版本:[[UIDevice currentDevice] systemName];//系统名字[[UIDevice currentDevice] systemVersion];//系统版本号[[UIDevice current...
分类:
移动开发 时间:
2014-10-10 17:07:34
阅读次数:
173
ios简单的方法:[UIDevice currentDevice].batteryMonitoringEnabled = YES;doubledeviceLevel = [UIDevice currentDevice].batteryLevel;获取当前剩余电量, 我们通常采用上述方法。这也是苹果官...
分类:
移动开发 时间:
2014-10-10 17:05:54
阅读次数:
315
注册方式:
if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 8.0) {
[[UIApplication sharedApplication] registerUserNotificationSettings:[UIUserNotificationSettings
...
分类:
移动开发 时间:
2014-10-10 15:13:54
阅读次数:
173
注意:本文章下的代码有个别变量未知,所以是不能直接跑通的,我也是转别人的在IOS6.0系统后,兼容iOS5.0与iOS6.0地图导航,需要分两个步骤#define SYSTEM_VERSION_LESS_THAN(v) ([[[UIDevice currentDevice] systemVersio...
分类:
移动开发 时间:
2014-10-05 02:18:17
阅读次数:
497