I am using a UITextField with a UIPickerView for its inputView, so that when the user taps the text field, a picker is summoned for th
UITextField
UIPickerView
inputView
You can just clear the textfield's tintColor
self.textField.tintColor = [UIColor clearColor];
Swift 3.0
self.textField.tintColor = .clear