-5
In file included from /Users/project/API.m:9:
In file included from /Users/project/API.h:9:
/Users/project/../AFNetworking/AFHTTPClient.h:88:10: warning: MobileCoreServices framework not found in project, or not included in precompiled header. Automatic MIME type detection when uploading files in multipart requests will not be available. [-W#warnings]
#warning MobileCoreServices framework not found in project, or not included in precompiled header. Automatic MIME type detection when uploading files in multipart requests will not be available.
  • どんな助けでも大歓迎です。
4

2 に答える 2

0

ステップ 1 - 上記の回答に従って、MobileCoreServices フレームワークに再度リンクします。あなたのスクリーンショットによると、あなたはそれをしました

ステップ 2 - PCH (プリコンパイル済みヘッダー) ファイルに次の行を含めます。このファイルは、PROJECTNAME-Prefix.PCH という名前にする必要があります。

 #import <MobileCoreServices/UTCoreTypes.h>
 #import <MobileCoreServices/MobileCoreServices.h>

その後、あなたは行く準備ができているはずです!

于 2013-09-04T04:43:27.200 に答える