iOS错误(二)

之前的博客添加不了了, 只能重新写一个了

  • (null): warning: (arm64) /Users/scmbuild/workspace/standard-pay/IOS/cp_record_client_release_729146/2134/mspc_iphone_msdk/AlipaySDK4Standard/AlipaySDK/Library/UTDID.framework/UTDID(UTDIDOpenUDID.o) unable to open object file: No such file or directory

治标不治本: 我需要符号文件

http://blog.csdn.net/Jerk_G/article/details/51135273

  • Entitlement文件移动位置后找不着
  • 手动添加Entitlement文件

通常,Xcode会自动管理Entitlement文件,所以我们并不需要在Xcode Project的Buidling Settings -> Code Signing -> Code Signing Entitlements 特意设置文件。

旧版本的Xcode,你需要自己添加Entitlement文件:

  • ERROR: missing Change-Id in commit message footer

git pull --rebase

  • This application is modifying the autolayout engine from a background thread after the engine was accessed from the main thread. This can lead to engine corruption and weird crashes

在子线程中访问了UIKit

  • Implicit declaration of function 'CC_SHA256' is invalid in C99

#include <CommonCrypto/CommonCrypto.h>

  • (projectName) does not have an architecture that (deviceName) can execute.

项目支持的版本, 不包括当前设备

查看 Target -> General -> Deployment Indo -> Deployment Target (所支持的版本)

和当前手机的系统版本

猜你喜欢

转载自blog.csdn.net/Margaret_MO/article/details/81537222