iOS | 真机测试的时候,遇到报错: Apple Mach-O Linker (Id) Error Linker command failed with exit code 1 (use -v to see invocation)

项目在 模拟器上 运行都好好的, 一到真机上运行的时候就报错.

真机测试的时候, 遇到了 报的一个错误, 如下:
Apple Mach-O Linker (Id) Error
Linker command failed with exit code 1 (use -v to see invocation)

错误提示.png

这是因为项目里的 bitcode 默认设置成了 YES, 我们需要修改它为NO. 如下图


iOS | 真机测试的时候,遇到报错: Apple Mach-O Linker (Id) Error Linker command failed with exit code 1 (use -v to see invocation)_第1张图片
默认 bitcode 为 YES.png

只要修改 YES 为 NO, 然后再在真机上运行, 就可以了.

iOS | 真机测试的时候,遇到报错: Apple Mach-O Linker (Id) Error Linker command failed with exit code 1 (use -v to see invocation)_第2张图片
真机正常运行.png

你可能感兴趣的:(iOS | 真机测试的时候,遇到报错: Apple Mach-O Linker (Id) Error Linker command failed with exit code 1 (use -v to see invocation))