HI;
In my iPhone App in UipickerView can I move picker Values up or down Programmatically
To add effect of an animation like picker is moving itself only
for that
[picker selectRow:0 inComponent:0 animated:YES];
---- ---
//here I need Some time delay
[picker selectRow:3 inComponent:0 animated:YES];
How can I give some time delay between execution of this two statements
Please help and Suggest
Thanks
If you want to add some delay, you could use :
But this will block your application, so it can be better to use a timer :
This should be performed on main thread, since UIKit is not thread safe