美文网首页ios10
Xcode8 从调试到打包遇到的一些问题

Xcode8 从调试到打包遇到的一些问题

作者: KermitX | 来源:发表于2016-09-22 10:48 被阅读938次

打印问题-NSLog

在Simulator上会有大量的类似网络的打印,取消这些打印的方法:


取消多余打印

设置好后当我们在真机调试的时候会发现真机没有任何打印,我们可以通过宏定义来替换原来的NSLog,前面的时间不需要可以去掉。

#ifndef __OPTIMIZE__
#define NSLog(...) printf("%f %s\n",[[NSDate date]timeIntervalSince1970],[[NSString stringWithFormat:__VA_ARGS__]UTF8String]);
#endif

Push问题

安装Xcode8后AppDelete.m文件中的绑定设备的方法不执行,解决方法:


解决绑定设备方法不执行

打包问题

1.证书问题:
Xcode8打包时不用再手动切换证书,直接Archive即可,Xcode会自动配置(前提之前已经把证书安装在mac上)。关于推送的环境配置(系统自动生成的文件)也不需要修改。

Push的环境配置
2.plist增加权限字段:
--- 打包无效版本原因:
** This app attempts to access privacy-sensitive data without a usage description. The app's Info.plist must contain an NSPhotoLibraryUsageDescription key with a string value explaining to the user how the app uses this data. **
---- 解决方法:
info.plist —Source Code中添加UsageDescription相关的key, 描述字符串自己随意填写就可以,但是不能为 "" ,一定要填写,不然依旧会引发包无效的问题,导致上传打包后构建版本一直不显示或者构建版本无效
<!-- 相册 --> 
<key>NSPhotoLibraryUsageDescription</key> 
<string>App需要您的同意,才能访问相册</string> 
<!-- 相机 --> 
<key>NSCameraUsageDescription</key> 
<string>App需要您的同意,才能访问相机</string> 
<!-- 麦克风 --> 
<key>NSMicrophoneUsageDescription</key> 
<string>App需要您的同意,才能访问麦克风</string> 
<!-- 位置 --> 
<key>NSLocationUsageDescription</key> 
<string>App需要您的同意,才能访问位置</string> 
<!-- 在使用期间访问位置 --> 
<key>NSLocationWhenInUseUsageDescription</key> 
<string>App需要您的同意,才能在使用期间访问位置</string> 
<!-- 始终访问位置 --> 
<key>NSLocationAlwaysUsageDescription</key> 
<string>App需要您的同意,才能始终访问位置</string> 
<!-- 日历 --> 
<key>NSCalendarsUsageDescription</key> 
<string>App需要您的同意,才能访问日历</string> 
<!-- 提醒事项 --> 
<key>NSRemindersUsageDescription</key> 
<string>App需要您的同意,才能访问提醒事项</string> 
<!-- 运动与健身 --> 
<key>NSMotionUsageDescription</key> <string>App需要您的同意,才能访问运动与健身</string> 
<!-- 健康更新 --> 
<key>NSHealthUpdateUsageDescription</key> 
<string>App需要您的同意,才能访问健康更新 </string> 
<!-- 健康分享 --> 
<key>NSHealthShareUsageDescription</key> 
<string>App需要您的同意,才能访问健康分享</string> 
<!-- 蓝牙 --> 
<key>NSBluetoothPeripheralUsageDescription</key> 
<string>App需要您的同意,才能访问蓝牙</string> 
<!-- 媒体资料库 --> 
<key>NSAppleMusicUsageDescription</key> 
<string>App需要您的同意,才能访问媒体资料库</string>

相关文章

网友评论

    本文标题:Xcode8 从调试到打包遇到的一些问题

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