Say, for example, I was wanting to edit the title for the highlighted state, is this possible?
I know it is possible with custom UIButtons, but is it possible to edit the properties of the UITableViewCellAccessoryDetailDisclosureButton?
If not, is it possible to create a custom button and still call a UITableView delegate method?
If so, how would one pass the indexPath from a custom button cell?
Cheers!
You can create a custom
UIButtonand assign it to theaccessoryViewproperty of your cell.If you want to do sth. really custom for the highlighted state of cells you should consider subclassing
UITableViewCelland overridesetSelected:animated: