美文网首页
iOS10&Xcode的一些改动和坑

iOS10&Xcode的一些改动和坑

作者: 青梅煮码 | 来源:发表于2017-03-19 19:49 被阅读309次

控制台打印了一堆乱码
只需要在Xcode ->Product-> Scheme->Edit Scheme中配置OS_ACTIVITY_MODEdisable


权限的改动

在iOS10中调用摄像机和相册位置蓝牙等一系列隐私权限的时候,必须要在info.plist文件中配置权限,可以说是加强了用户信息的安全性。
NSCalendarsUsageDescription <string>访问日历<string>
NSMicrophoneUsageDescription <string>访问麦克风</string>
NSAppleMusicUsageDescription<string>访问媒体数据库</string>
NSMotionUsageDescription<string>访问运动与健康</string>
NSRemindersUsageDescription<string>访问提醒事项</string>
NSLocationAlwaysUsageDescription<string>始终访问位</string>
NSLocationWhenInUseUsageDescription<string>使用期间访问位置</string>
NSLocationUsageDescription<string>访问位置</string>
NSPhotoLibraryUsageDescription<string>访问相册</string>
NSCameraUsageDescription<string>访问相机</string>

配置如图

关于Xcode8没办法使用command+/注释的问题

终端输入:

sudo /usr/libexec/xpccachectl

等运行结束时重启电脑

相关文章

网友评论

      本文标题:iOS10&Xcode的一些改动和坑

      本文链接:https://www.haomeiwen.com/subject/hsrvnttx.html