如何将 UIKit 添加到 Xcode 项目?
我已将另一个程序员的项目导入 Xcode 并收到错误“未找到 UIKit/UIKit.h 文件”。我尝试右键单击 Frameworks 文件夹,但没有找到添加它的方法。如何将 UIKit 添加到该项目中?
I've imported another programmer's project into Xcode and get the error "UIKit/UIKit.h file not found." I tried right clicking the Frameworks folder but didn't see a way to add it. How can I add the UIKit to this project?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
检查您是否使用的是 iOS 项目而不是 Mac OSX 项目 - UIKit 仅适用于 iPhone/iPad
Check that you are using a iOS project and not a Mac OSX one - UIKit is only for the iPhone/iPad
导航到目标并转到
Build Phases
并将 UIKit 添加到Link Binary With Libraries
。来自这篇文章的评论:
Navigate to the target and go to
Build Phases
and add UIKit toLink Binary With Libraries
.From the Comments to this post: