UIPicker selection from NSUserDefaults in double value

70 Views Asked by At

I'm beginner developer... I have NSUserDefaults to get UIPicker selection and a double value where to load selection of the UIPicker.

 NSUserDefaults *pickerViewSelectionDefaults = [NSUserDefaults standardUserDefaults];
        [pickerWork selectRow:[pickerViewSelectionDefaults integerForKey:@"pickerSelectionMinWork"] inComponent:0 animated:YES];

double dobMinute = [[NSString stringWithFormat:@"%f", [[minArray objectAtIndex:[pickerWork selectedRowInComponent:0]] floatValue]] doubleValue]*60;

How can I replace selectedRowInComponent: with selectRow:inComponent:animated: because I have this error:

Sending 'void' to parameter of incompatible type 'NSUInteger' (aka 'unsigned long')

Thanks in advance!

1

There are 1 best solutions below

6
On

change

  double dobMinute = [[NSString stringWithFormat:@"%f", [[minArray objectAtIndex:[pickerWork selectedRowInComponent:0]] floatValue]] doubleValue]*60;

to

double dobMinute = [pickerViewSelectionDefaults integerForKey:@"pickerSelectionMinWork"]*60;