Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

nyquist212

macrumors newbie
Original poster
I'm creating an app that allows users to write a bulleted list.

Each time they type a line and hit return, its a new item on the list.

I can't figure out how to format my lines so a bullet point displays infront of the line.

Does anyone know how to do this?

Thanks so much for your time. Any bit of help is great!
 
You're probably going to want to provide your own bullets. Then simply go
Code:
cell.image = [UIImage imageNamed:@"bullet.png"];

This will place it at the left side of the cell text.

If you want the right side, then use accessoryView.
 
I would like to implement the code in the post above. What is the best size to have the image (in pixels) for use in the UITableView?
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.