Your Site Title

iOS Info.plist

1. NSAppTransportSecurity

iOS 9.0开始不赞成使用Http不安全协议 如果确定使用Http, 那么需要配置NSAppTransportSecurity

2. 配置URL Scheme

<key>CFBundleURLTypes</key>
<array>
	<dict>
		<key>CFBundleURLSchemes</key>
		<array>
			<string>JingantechSecurity</string>
		</array>
	</dict>
</array>

3. CFBundleIcons 和 UILaunchImages

iOS 5.0 时是使用CFBundleIconsUILaunchImages来指定应用图标和启动图片. 现 在一般用来修改应用图标和启动图片

屏幕相关

  1. UIRequiresFullScreen

    是否全屏 注: 已不在Info.plist中配置, 在项目Targets->General中勾选

  2. UISupportedInterfaceOrientations

    应用支持的设备方向

  3. UIViewControllerBasedStatusBarAppearance

    Status Bar的字体颜色, 是白色还是黑色. status bar 永远是透明的.

设备相关

  1. UIRequiredDeviceCapabilities

    指定应用需要的设备功能

  2. UIBackgroundModes

    后台运行模式

权限相关

  1. NSCameraUsageDescription

    使用相机

  2. NSLocationAlwaysUsageDescription

    一直定位

  3. NSLocationWhenInUseDescription

    当使用时定位

  4. NSMicrophoneUsageDescription

    使用麦克风

Reference

What’s New in iOS