views:

21

answers:

1

How can one emulate the UITableViewCell(s) used when bulk editing (All Inboxes > Edit) in the Mail App. Specifically, the hollow circles that fill with a red filling and white checkmark when selected (and the cell also changes to a blue tint). Is it possible do this with existing disclosure? Thanks.

+2  A: 

In the method for selecting editing style return 3. This should get you started.

E. Criss
Thanks! This is exactly what I was looking for! Do you happen to know why this isn't documented or featured as an enumerable constant? Cheers!
Kevin Sylvestre
it is enumerated. I just couldnt remember it at the time. Its called UITableCellAccessoryCheckmark so you can return that instead of 3. As to why its not documented I have no idea. From my experience Apple to loves to stick you into their little box of what you can and cant do. I find it infuriating that these such features exist and Apple doesnt document it for us developers.
E. Criss