项目运行出错集锦

一、项目运行不了
Failed to initiate service connection to simulator Error returned in reply: Connection invalid


项目运行出错集锦_第1张图片
image.png

解决办法:需要关闭所有不同版本的xcode还有模拟器,重新打开运行就行

二、添加文件或者第三方库出错
linker command failed with exit code 1 (use -v to see invocation)

1、首先排查项目中是否有名字重复的文件;

结合我的以上的报错情况,查看项目中是否不止一个ViewController文件

2、检查是否在#import头文件的时候,错把.h写成了.m

通过Xcode的过滤查询功能,我很很快就修正了错误。

三、引入ARC库
iOS 报错:cannot create weak reference in file using
解决办法:
点击工程启动文件 - TARGETS -Build Settings - 在下方搜索框搜索weak - 在Apple LLVM 8.0 - Language - Objective C选项下边 - 把Weak Reference in Manual Retain Release选项改成YES即可。


项目运行出错集锦_第2张图片
image.png

你可能感兴趣的:(项目运行出错集锦)