I have a UIPickerView that contains values 0-100. When I scroll up, it ascends accordingly (0, 1, 2, etc.) (see attached image)
Is it possible to scroll down and have the numbers ascend that way?
Essentially I want to reverse scroll for the UIPickerView so in the provided image, the numbers would be reversed and as I scroll down the numbers will increase up to 100.
On viewDidLoad
I tried
[self.pickerView selectRow:100 inComponent:0 animated:YES];
However that just goes straight to 100 in the same manner.