We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e06eba commit 9bcf4efCopy full SHA for 9bcf4ef
1 file changed
tns-core-modules/ui/list-view/list-view.ios.ts
@@ -186,6 +186,12 @@ class UITableViewRowHeightDelegateImpl extends NSObject implements UITableViewDe
186
}
187
return indexPath;
188
189
+
190
+ public tableViewDidSelectRowAtIndexPath(tableView: UITableView, indexPath: NSIndexPath): NSIndexPath {
191
+ tableView.deselectRowAtIndexPathAnimated(indexPath, true);
192
193
+ return indexPath;
194
+ }
195
196
public tableViewHeightForRowAtIndexPath(tableView: UITableView, indexPath: NSIndexPath): number {
197
let owner = this._owner.get();
0 commit comments