I tried to compile my code against 3.2 (in order to test in ipad simulator), but I got the following error:
“can not find protocol NSXMLParserDelegate”
I added the following line for the first warning, and all the 22 warnings were gone (and even the code worked :) )
#if __IPHONE_OS_VERSION_MIN_REQUIRED >= __IPHONE_4_0
@protocol NSXMLParserDelegate
@end
#endif
@interface MGTwitterXMLParser : NSObject <NSXMLParserDelegate> {
