シミュレーターでは問題なく動作するサンプル 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 は、[ビルド フェーズ] タブで赤色になっています。
サンプルプロジェクトを何も変更せずに実行しようとしましたが、同じエラーが発生しました
ありがとう。