I am trying to call didSelectRowAtIndexPath programmatically but am having trouble.
[self tableView:playListTbl didSelectRowAtIndexPath:indexPath];
Swift 3.0 Solution
Manually call didSelectRowAtIndexPath
let indexPath = IndexPath(row: 7, section: 0) tblView.selectRow(at: indexPath, animated: true) tblView.delegate?.tableView!(tblView, didSelectRowAt: indexPath)