I\'m using the most excellent AFNetworking
library in a project that I\'m currently upgrading to iOS 6. I\'m in the middle of the upgrade, whittling down the bu
If you're using swift: Xcode compiles Swift code before the Prefix.pch
file is compiled, so you'll get these warnings even if the correct imports are in your .pch file. The best solution I've found is to add them to the project's Bridging-Header.h
file before importing AFNetworking:
#import
#import
#import "AFNetworking.h"