1

I added a UIPicker view on action sheet and called on text Field touch. action sheet appears picker shows but picker doesn't respond touch properly only selection bar of picker responds touch.

Daniel
  • 23,129
  • 12
  • 109
  • 154
Gaurav
  • 451
  • 1
  • 5
  • 7

1 Answers1

1

One reason of this happening is if you are displaying it on top of a tabbar and using the option

[selectYearOfBirth showInView:(UIView *)]

rather use the option 

[selectYearOfBirth showFromTabBar:(UITabBar *)]

This should solve your problem if i am right

LostPuppy
  • 2,471
  • 4
  • 23
  • 34