I\'m declaring an NSString property in a class and objective-c is complaining that:
NSString no \'assign\', \'retain\', or \'copy\' attribute is specifie
Cocoa uses reference counting to manage memory. Objects with a reference count of 0 are deleted.
More detail here, at Apple's own documentation.