vote up 0 vote down star

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 this?


cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:RootViewControllerCell] autorelease];

// Dpericated in SDK 3.0
//
//cell.text = controller.title;
//cell.image = controller.rowImage;

// Using what the documentation says to use Error===> cell.textLabel = controller.title;
Error===> cell.imageView = controller.rowImage;

Error: Object cannot be set - Either readonly property or no setter found.

Hope this makes sense, any help would be appreciated.

flag

2 Answers

vote up 0 vote down

Use the non-deprecated:

cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:RootViewControllerCell] autorelease];

Then:

[[cell textLabel] setText:[controller title]];
[[cell imageView] setImage:[controller rowImage]];

link|flag
With much thanks to BrianSlick – djt9000 Jul 27 at 4:57
vote up 0 vote down

You can also use the usual .-syntax:

cell.textLabel.text = controller.title;
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.