I’m getting compiler warnings with AFNetworking, but shouldn’t be. How do I fix it?
I’m not sure if you’re using CocoaPods or not but this is a known issue being tracked on the AFNetworking Github page. I was able to fix this by adding the correct import statements directly to my `PROJECTNAME-Prefix.pch there I changed it to this. #ifdef __OBJC__ #import <UIKit/UIKit.h> #import <SystemConfiguration/SystemConfiguration.h> #import <MobileCoreServices/MobileCoreServices.h> #endif If you … Read more