views:

133

answers:

1

I want to add the action sheet in cell of table view, i want when i click on the cell of table view the action sheet should come and after i click on the the option in action sheet, i want to go to the next view.

A: 

Make ur view controller implement the UITableViewDelegate and UIActionSheetDelegate and set those delegates properly

Override tableView:didSelectRowAtIndexPath: show your ActionSheet there Override actionSheet:clickedButtonAtIndex: and dismiss the ActionSheet and show the next view.

Quakeboy