How to add an action sheet to a table cell

I want to add an action sheet to the table view cell, I want when I click on the table cell to appear, and after I click on this option in the action sheet, I want to go to the next view.

0
source share
1 answer

Make ur view manager implement UITableViewDelegate and UIActionSheetDelegate and assign these delegates correctly

Override the table View: didSelectRowAtIndexPath: show your ActionSheet Override actionSheet: clickedButtonAtIndex: and release the ActionSheet and show the following view.

+1
source

Source: https://habr.com/ru/post/1344753/


All Articles