After upgrading Xcode to the 4.2, I’m going through and fixing all the new compiler warnings that I’m getting. One that is in a lot of places is the “property’s synthesized getter follows Cocoa naming convention for returning ‘owned’ objects” warning. This is showing up in some code generated from web service WSDL files, so I don’t want to change the property names just to satisfy a warning. Is there a compiler flag to disable these warnings? I’ve done the requisite googling, but I can’t seem to find one.
Share
I think the consensus is that a compiler flag like this doesn’t exist, so the best route (in my situation) is to try to get the third party code generator to handle this appropriately.