0

In my code I need to know in what direction my UIPickerView rotate at this moment. Can anybody help me with this problem?

Richard J. Ross III
  • 55,009
  • 24
  • 135
  • 201
iShimchik
  • 3
  • 2

1 Answers1

1

You need to sublcass UIPickerView and add the standard touch handling events. The UIPickerView is composed of nine subviews, one of which is a UIScrollView. Use the gesture recognition api to handle the events.

Example of subclassing here.

Community
  • 1
  • 1
N_A
  • 19,799
  • 4
  • 52
  • 98