Sorry for the question without any line of code. I need advice how to proceed, if at possible that I want.
In Swift language.
Let us assume there is an app
You can also do this simply by accessing the tableView delegate to force didSelectRowAtIndexPath to fire.
Programatically select a row to work with:
self.tableView.selectRowAtIndexPath(indexPath, animated: true, scrollPosition: UITableViewScrollPosition.Top)
Programatically selecting row does not fire the "didSelectRowAtIndexPath" function so we must manually force the firing as per below:
self.tableView.delegate!.tableView!(tableView, didSelectRowAtIndexPath: indexPath!)
Objective-C:
[self.tableView.delegate tableView:self.tableView didSelectRowAtIndexPath:path];