iPhone SDK 3.0 deprecation of UITableViewCell .text
- by djt9000
Came across an SDK3.0 deprecation that I am having a bit of trouble tryinig to figure out. If my declaration of
@property (nonatomic, retain) UIImage *rowImage;
does not work, nor
@property (nonatomic, readonly, retain) UIImage *rowImage;
and I
@synthesize rowImage;
Do I need to write my own setter because @synthesize will not properly handle…