在iPhone应用程序中发送电子邮件

时间:2012-01-03 01:58:23

标签: iphone objective-c frameworks xcode4.2

我收到了这个警告

MessageUI.framework/MessageUI, file was built for unsupported file format which is not the architecture being linked (i386)

它说什么?

我已经通过拖放到我的资源文件夹添加了消息框架(我还选择了复制文件或其他内容的标记)。这是添加框架的正确方法吗?我累了R点击资源文件夹,但我找不到任何说明添加框架或任何类似的菜单选项。 (我正在使用xcode 4.2

2 个答案:

答案 0 :(得分:2)

你应该通过目标设置,在构建阶段,在带有库的链接二进制文件下添加框架,在那里添加messageUI.framework,不要拖放并复制到资源文件夹中。

答案 1 :(得分:1)

您必须在项目中手动添加MessageUI框架。

为此,请按照以下步骤操作:

1)点击主项目 - >转到目标--->选择Build Phases - >选择Link Binary With Libraries。

enter image description here

2)点击 + 符号,添加名为MessageUI.framework的框架。

enter image description here