Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用 MFMessageComposeViewController 发送应用内短信,并在我的项目中导入 MessageUI 框架。但是当我使用
#import "MessageUI.h"
Xcode告诉我:找不到MessageUI.h。我不知道为什么以及如何解决这个问题?
非常感谢。
这个语法:
将用于在本地项目中导入标头。要导入系统类型的标头,请使用以下语法:
#import <MessageUI/MessageUI.h>
当您使用此语法时,编译器知道在哪里查找有问题的标头。