Objective-C / UIButton / SetTitle
- by apple92
Does the setTitle method of UIButton retain the NSString passed as argument ?
I guess I can rely on the fact that the property is defined as:
property(nonatomic,readonly,retain) UILabel *titleLabel
In this case, I think that it does retain the string.
Thanks,
Apple92