The warnings are due to legacy SDK calls and deprecated methods.
- The "-fobjc-gc not supported for iPhone OS; ignoring" come from the Flickr library which can be compiled against OS/X or iOS. Certain switches will be ignored on iOS, hence the warnings.
- NSXMLParser used to be a standalone class - the missing NSXMLParseDelegate was only introduced in iOS 4.0. NSXMLParser still works using the old technique, but produces the aforementioned warning. I held off on moving to the new model since that would limit the app target to only devices with iOS 4.0. Once that OS becomes more prevalent, LF will be updated. The Facebook Connect library produces similar warnings for the same reason.
- The MockPhotoSource warnings are benign, but will be removed in the next release as well.
- George