Came to failure SDK3.0, which I experience with great difficulty, trying to understand. If my ad
@property (nonatomic, retain) UIImage *rowImage;
not working as well
@property (nonatomic, readonly, retain) UIImage *rowImage;
and I
@synthesize rowImage;
Do I need to write my own setter, because it @synthesizewill not handle this correctly?
<hr>
cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:RootViewControllerCell] autorelease];
Error===> cell.textLabel = controller.title;<br>
Error===> cell.imageView = controller.rowImage;<br>
Error: Object cannot be set - Either readonly property or no setter found.
Hope this makes sense, any help would be appreciated.
source
share