Currently with NativeScript 2.4, the following works
var cell = args.ios; if (cell) { cell.selectionStyle = UITableViewCellSelectionStyleNone }
And if you want to change the highlight color, here is a simple approach, I have not tested the performance, but it works fine on the iPhone 6.
import { Color } from 'color'; cell.selectedBackgroundView = UIView.alloc().initWithFrame(CGRectMake(0, 0, 0, 0)); let blue = new Color('#3489db'); cell.selectedBackgroundView.backgroundColor = blue.ios
source share