AFNetworking/AFHTTPClient.h:88:10: - ios
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.
- любая помощь очень ценится.
2 ответа
Нажмите на название проекта на левой панели -> справа выберите сводку -> нажмите кнопку "+" -> добавьте "MobileCoresServices.Framework"
Сохрани это
убери это
запустить его
Шаг 1 - следуйте ответу выше, чтобы связать структуру MobileCoreServices. Вы сделали это, согласно вашему скриншоту
Шаг 2 - Включите следующие строки в файл PCH (Precompiled Header). Этот файл должен называться PROJECTNAME-Prefix.PCH
#import <MobileCoreServices/UTCoreTypes.h>
#import <MobileCoreServices/MobileCoreServices.h>
Тогда тебе должно быть хорошо идти!