11

In iOS 7 have been using ActionSheetPicker to let the user to select a choice and it has been working great until I installed Xcode beta 2 and ran my project in iOS 8. Is there a way to do this in iOS 8?

Screenshots: https://i.stack.imgur.com/oLDco.jpg

Thanks for your help in advance.

JasonMArcher
  • 14,195
  • 22
  • 56
  • 52
  • I was wondering the same thing. I asked a legitimate questions which looks like will not get answered. I did a little more research and it will just be easier to create a picker view and hide/show as needed. – Laurynas Sinkevičius Jun 23 '14 at 01:44
  • check out this question and answer: http://stackoverflow.com/questions/24330152/showing-a-uipickerview-with-uiactionsheet-in-ios8-not-working – UnTick Jun 27 '14 at 17:08
  • @Gabriel.Massana, why the upvote? – holex Aug 26 '14 at 15:44

2 Answers2

9

There is a fork ActionSheetPicker-3.0 which has been updated to work for iOS 8.

Nicholas Harlen
  • 1,114
  • 1
  • 11
  • 11
0

I was facing the same issue and couldn't find a solution.

I ended up using a UIViewController instead of UIActionSheet. I added the UIPickerView as a subView to the viewController's view and presented in modally.

Abdullah Umer
  • 4,234
  • 5
  • 36
  • 65