在XCode6.4之前以“项目名称-info.plist”的文件存在。增加一个key:bundle display name设置项目应用的名称;key:bundle versions string.short设置应用发布的版本号;key:bundle version公司内部测试的版本号;bundle identifie应用的唯一标识;main storyboard file base name系统默认加载的故事板文件;supported interface orientations设置home键可支持的方向。
怎么获取info.plist文件:本身是个字典。【nsbundle mainbundle】.infoDictionary获取。utf-8的格式输出。
pch文件(prefixHeader.pch预编译头文件,Xcode6以前有)1、用来包含常用的头文件或宏。创建:在iOS里的other里面有pch的文件,在pch文件内加#import “文件名”,Xcode6以后在使用前需进行配置(点击项目,target,building settings,all,搜索prefixheader,添加路径./项目名/pch的文件名)。2、控制打印信息。#ifdef DEBUG #define CZLog(...)NSLog(__VA_ARGS__) #else #define CZLog(...)#endif 注释:当处于测试版本时,czlog不在具备打印nslog的功能。3.oc包含c,可是c不能使用oc的东西,因此需要将oc语言的内容进行隐藏,#ifdef __OBJC__ #endif
网友评论