How to set a default Value of a UIPickerView
TL:DR version: //Objective-C [self.picker selectRow:2 inComponent:0 animated:YES]; //Swift picker.selectRow(2, inComponent:0, animated:true) Either you didn’t set your picker to select the row (which you say you seem to have done but anyhow): – (void)selectRow:(NSInteger)row inComponent:(NSInteger)component animated:(BOOL)animated OR you didn’t use the the following method to get the selected item from your picker – (NSInteger)selectedRowInComponent:(NSInteger)component This will … Read more