I need to have a disclosure and delete icon on my UITableView how do I add them ?
I think the delete doesn't show all the time ? although I'm not sure about this, can someone advise?
I need to have a disclosure and delete icon on my UITableView how do I add them ?
I think the delete doesn't show all the time ? although I'm not sure about this, can someone advise?
For the disclosure, you can set the accessoryType property in the desired cell. For the delete button you should enable the "editing" property of the table, and set the "editing style" property of the cell. You should also use the "editing" property of the table to switch between edit mode and regular.