// 设置状态栏颜色
info.plist添加View controller-based status bar appearance设置为NO
在需要设置状态栏样式的地方加上(默认黑色)[UIApplication sharedApplication].statusBarStyle = UIStatusBarStyleDefault;
(白色)[UIApplication sharedApplication].statusBarStyle = UIStatusBarStyleLightContent;,也可以用一个view来改变StatusBar的背景色
// 对于无法访问HTTP的连接
需要在在Info.plist中添加NSAppTransportSecurity类型Dictionary。在NSAppTransportSecurity下添加NSAllowsArbitraryLoads类型Boolean,值设为YES,不过以后要适配HTTPS了。
// 下面就简单点啦
Localized resources can be mixed 当我们访问相册相机的时候,进去里面是英文,设置这个为YES就可以变成中文啦!
NSPhotoLibraryUsageDescription App需要您的同意,才能访问相册
NSCameraUsageDescription App需要您的同意,才能访问相机
NSMicrophoneUsageDescription App需要您的同意,才能访问麦克风
NSLocationUsageDescription App需要您的同意,才能访问位置
NSLocationWhenInUseUsageDescription App需要您的同意,才能在使用期间访问位置
NSLocationAlwaysUsageDescription App需要您的同意,才能始终访问位置
NSCalendarsUsageDescription App需要您的同意,才能访问日历
NSRemindersUsageDescription App需要您的同意,才能访问提醒事项
NSMotionUsageDescription App需要您的同意,才能访问运动与健身
NSHealthUpdateUsageDescription App需要您的同意,才能访问健康更新
NSHealthShareUsageDescription App需要您的同意,才能访问健康分享
NSBluetoothPeripheralUsageDescription App需要您的同意,才能访问蓝牙
NSAppleMusicUsageDescription App需要您的同意,才能访问媒体资料库
未完待续。。。。。。。