I want to default delete button and disclosure button in uitable view how it possble?
+2
A:
To add disclosure button in your data source implementation of
-cellForRowAtIndexPath
method add[cell setAccessoryType:UITableViewCellAccessoryDetailDisclosureButton];
To show delete button set tableView.editing property to YES and implement delegate's
editingStyleForRowAtIndexPath
method and return appropriate editing style (None, Insert or delete) for each cell.
Look in docs for more details
Vladimir
2009-11-02 13:22:18