我正在尝试测试一个示例 iOS 应用程序,该应用程序在模拟器上运行没有问题,而在真实的 iOS 设备上构建失败,出现以下错误:“未找到 UIKit/UIKit.h”。产生错误的文件是“TestRealDevice-Prefix.pch”
//
// Prefix header for all source files of the 'TestRealDevice' target in the 'TestRealDevice' project
//
#import <Availability.h>
#ifndef __IPHONE_4_0
#warning "This project uses features only available in iOS SDK 4.0 and later."
#endif
#ifdef __OBJC__
#import <UIKit/UIKit.h>
#import <Foundation/Foundation.h>
#endif
UIKit.framework、Foundation.framework 和 CoreGraphics.framework 在“构建阶段”选项卡中有红色!
我试图运行一个示例项目而不修改其中的任何内容,但我有同样的错误
谢谢。