版本适配

版本适配_第1张图片
Layout

屏幕适配

代码适配

  • Masonry
  • UIView+AutoLayout

可视化适配

  • autoLayout

系统适配

手机序列号:6685c75e34104be0b04c6ceb72985dc381f0f746

NSString* identifierNumber = [[UIDevice currentDevice] uniqueIdentifier];  
NSLog(@"手机序列号: %@",identifierNumber);  

手机别名:用户定义的名称 “spring sky”的 iPod

NSString* userPhoneName = [[UIDevice currentDevice] name];  
NSLog(@"手机别名: %@", userPhoneName);  

设备名称:iPhone OS

NSString* deviceName = [[UIDevice currentDevice] systemName];  
NSLog(@"设备名称: %@",deviceName );  

手机系统版本: 5.1.1

NSString* phoneVersion = [[UIDevice currentDevice] systemVersion];  
NSLog(@"手机系统版本: %@", phoneVersion);  

手机型号: iPod touch

NSString* phoneModel = [[UIDevice currentDevice] model];  
NSLog(@"手机型号: %@",phoneModel );  

地方型号 (国际化区域名称): iPod touch

NSString* localPhoneModel = [[UIDevice currentDevice] localizedModel];  
NSLog(@"国际化区域名称: %@",localPhoneModel );  
  
NSDictionary *infoDictionary = [[NSBundle mainBundle] infoDictionary];  

当前应用名称:myDemo

NSString *appCurName = [infoDictionary objectForKey:@"CFBundleDisplayName"];  
NSLog(@"当前应用名称:%@",appCurName);  

当前应用软件版本:1.0.1

NSString *appCurVersion = [infoDictionary objectForKey:@"CFBundleShortVersionString"];  
NSLog(@"当前应用软件版本:%@",appCurVersion);  

当前应用版本号码:int类型

NSString *appCurVersionNum = [infoDictionary objectForKey:@"CFBundleVersion"];  
NSLog(@"当前应用版本号码:%@",appCurVersionNum); 

SDK(Software Development Kit, 即软件开发工具包 )

Xcode给SDK提供平台,你用SDK编程。
XCode只是一个IDE(IDE,Integrated Development Environment,集成开发工具),用于开发的一个工具而已,你也可以不用XCode来完成开发。
SDK是API(Application Programming Interface,应用编程接口),是你编程的工程中需要用到的一些类和方法,这些是苹果公司给你开发好的,你调用就可以了。

Base SDK指的是当前编译用的SDK版本。iPhone OS Deployment Target指的是编译出的程序将在哪个系统版本上运行。则应把Deployment Target置为要支持的最低的系统版本号。由此可知,Deployment Target一定小于等于Base SDK。

你可能感兴趣的:(版本适配)