Xcode常见错误

1. Apple LLVM 6.0 Error

错误原因:由于你更新了 Xcode 的版本,或者是你删了之前的又重装了一遍 Xcode。
解决方法
(1) 点开 Finder 中的”前往”,按住option 键,进入资源库(隐藏文件夹)。
(2) 依次进入Developer > Xcode ,删除DerivedData文件夹。

2. warning: Unsupported Configuration: Scene is unreachable due to lack of entry points and does not have an identifier for runtime access via -instantiateViewControllerWithIdentifier:

错误原因:新建项目时,选择了Emtpy Application模版。没有设置初始化进入的视图控制器

解决方法:在故事面板中选中视图,在其属性检查器中找到Initial Scene项的 Is Initial View Controller复选框,勾上就能使程序打开时进入该视图。一般后建的故事面板都不会默认选中该选项

3. [ViewController up]: unrecognized selector sent to instance

错误原因:某个对象没有实现某个方法

4. setValue:forUndefinedKey:]: this class is not key value coding

错误原因:连线出问题了

你可能感兴趣的:(Objective-C,iOS开发技巧,xcode)