信息钳的作用

时间:2011-03-22 11:06:59

标签: xcode

有人能简单解释一下info-plist在xcode项目中的作用是什么?

1 个答案:

答案 0 :(得分:2)

典型Info.plist文件的内容将以下信息传达给系统:

  • 要显示的用户可见名称 捆绑
  • 唯一标识符字符串 (通常以表格形式 com.yourcompany.appname)可以 用于在运行时找到捆绑包
  • 捆绑的类型(应用程序, 框架,插件)
  • 版 信息
  • 捆绑包的首选执行环境
  • 有关捆绑包支持的文档类型(如果有)的信息
  • 对于iPhone应用程序,信息 关于应用程序最初如何呈现内容

http://developer.apple.com/library/ios/#documentation/Xcode/Conceptual/iphone_development/115-Configuring_Applications/configuring_applications.html

http://developer.apple.com/library/ios/#documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/BuildTimeConfiguration/BuildTimeConfiguration.html