[Solved] How to get index of array element in cell? [closed]
Sorry if I’m understanding your English incorrectly, but I guess this is along the lines of what you want: You can get the indexPath of the row that was selected in a table by implementing tableView:didSelectRowAtIndexPath: in you tableView’s delegate (presumably your tableViewController). An indexPath has two properties you’ll be interested in; section and row. … Read more