Will need someone with knowledge of ARC to help me.
Basically, I have declared some variables as such in my class
@interface Class{
NSString* one;
NSString* two;
}
@property(nonatomic,weak) NSString* one;
As you can see, I can set the weak identifier to NSString* one
. However, I do not need a getter/setter/synthesizer for NSString* two
as it is just a common variable. How can I set a weak
label to it so the memory is deallocated? Or is automatically set?