I am using Storyboard and UITableView without UINavigationController.
Storyboard
UITableView
UINavigationController
When tapping on any cell, it should bring user to a detail p
The prepareForSegue:sender: method's sender parameter is the cell you are looking for. You can get it's index path by [self.tableView indexPathForCell:sender] (you may need a cast).
prepareForSegue:sender:
sender
[self.tableView indexPathForCell:sender]