what the procedure of display image in particular UItableview(grouped) cell iphone ?
views:
27answers:
2
A:
Do it like:
UIImageView *imgView = [[UIImageView alloc] initWithImage:urImage];
[cell setBackgroundView:imgView];
[imgView release];
Hope this helps.
Thanks,
Madhup
Madhup
2010-04-05 11:07:45
A:
The document A Closer Look at Table-View Cells provides in depth explanation and example code. It's worth reading.
Frank Martin
2010-04-05 11:11:55