views:

265

answers:

2

Is there a way to rotate an UIPickerView?

A: 

Are you looking for - (void)selectRow:(NSInteger)row inComponent:(NSInteger)component animated:(BOOL)animated?

Or do you mean that you want to rotate the whole control 90 degrees, thus having wheels that spin to the left and right?

Daniel Yankowsky
+1  A: 

You can rotate a UIPickerView by applying a transform to a view containing it, much like I suggest in my answer here for scaling the picker.

Brad Larson