views:

15

answers:

1

I have a UITableViewCell setup and i'd like to add a graphic on the right hand side with a number inside it (similar to the way mail shows how many new mail messages you have)

So the UITableViewCell would look something like this;

alt text

Is there a simple way to do this? Many thanks.

A: 

simply, just addSubview on our cell..
[cell.contentview addSubView : yourIcon];
make sure that ur icon set at the right coordinate before u add it to ur cell

Imam Arief W