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
ARC does not allow to use "New...." in property name. but you can use "newTitle" by changing getter name.
@property (nonatomic, strong, getter=theNewTitle) NSString *newTitle;