升级到Xcode12.1
之后,可能会存在如下问题,有兴趣的同学可以尝试一下!
1: objc_msgsend too many arguments to function call expected 0 have 3
解决办法:
Project -> Clear Builder Folder
- 然后 设置
Enable Strict Checking of objc_msgSend Calls
为NO
- 关闭XCode 重新打开
2: missing one or more architectures required by this target: arm64
Xcode12 build error. The linked framework 'Pods_projectA.framework'is missing one or more architectures required by this target: arm64
解决办法: Project -> Build Settings -> Excluded Architecture -> Debug -> Any iOS Simulator SDK 添加arm64
3:xxx.h 文件 找不到
解决办法: 在Header Search Path -> Debug 中添加对应搜索目录
4: No architectures to compile for (ONLY_ACTIVE_ARCH=YES, active arch=x86_64, VALID_ARCHS=arm64 armv7 armv7s).
解决办法: Project -> Build Settings -> Build Active Architecture Only -> Debug 设置为NO
5: Command PhaseScriptExecution failed with a nonzero exit code
问题原因: 请见这里
解决办法 1: 删除 User-Defined
下面的 VALID_ARCHS
设置 ,设置 Excluded Architecture 下 [Any iOS Simjulator]为 arm64
解决办法 2: 在 User-Defined
下面的 VALID_ARCHS
设置,Debug 为 arm64 armv7 armv7s x86_64
新增 x86_64
机型。
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。