I\'m currently using the iOS 5 SDK trying to develop my app.
I\'m trying to make an NSString a property, and then to synthesize it in the .m file (I have done this before wi
The name of the member starting with new is what triggers the warning. Change the name to editedTitle and the warning will go away. I was unable to find documentation confirming this but through testing was able to determine that member variables that begin with 'new' aggravate the compiler.