Anybody notice that the text in your application's UIPickerViews is rendered incorrectly, with the first character cut off? I'm seeing this in all UIPickerViews in my app, on multiple devices. You can see a few pixels of the first character in most cases.
I've tried deleting derived data, and the application from the phones, but no dice.
I'm not sure which update might have triggered the problem, but it just started in a project that has been stable for months. The code for the labels:
func pickerView(_ pickerView: UIPickerView, viewForRow row: Int, forComponent component: Int, reusing view: UIView?) -> UIView{ let pickerLabel = UILabel() pickerLabel.text = "Rec.709" pickerLabel.font = UIFont(name: "Ropa Sans", size: 18) pickerLabel.textColor = UIColor.white pickerLabel.textAlignment = NSTextAlignment.left}