Is that possible to use tableView cells like a button? In my app I want to have a table view which has 4 rows and in each row there will be labels. What I want is when I touch a row, the table tableview cell should react like a button (perform an action and background is highlighted)? Is that possible? How can I do that? Thanks.
Share
very simple the delegate method will be called didSelectRowAtIndexPath there you can get which row is tapped in which section and you can perform further action.
for example