致命错误:无法建立模块'达尔文'在xcode 5.1.1中

时间:2014-07-17 05:42:09

标签: ios xcode5 darwin

项目在xcode 5.0.1中进行构建,但不在xcode5.1.1中。我试图从有效的体系结构和构建体系结构中删除arm64但我得到同样的错误。

我已经在stackoverflow上提到了很多帖子,但在这个问题上没有人帮忙。

有人可以帮我吗?

编辑:以下是错误消息的屏幕截图。

Here is the screenshot of error message.

1 个答案:

答案 0 :(得分:0)

项目 - >构建阶段 - > Link Binary with Librairies - >添加(+)Foundation.framework。

您的项目-Prefix.pch应如下所示:

#ifdef __OBJC__
    #import <UIKit/UIKit.h>
    #import <Foundation/Foundation.h>
#endif

或者,如果您在构建设置中启用模块

#ifdef __OBJC__
    @import UIKit;
    @import Foundation;
#endif

否则,您是否尝试过重新安装Xcode?