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.
views:
21answers:
1
+2
A:
In the method for selecting editing style return 3. This should get you started.
E. Criss
2010-08-04 20:59:52
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
2010-08-04 21:55:02
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
2010-08-05 18:20:47