Showing a UIPickerView with UIActionSheet in iOS8 not working
From the reference for UIActionSheet: UIActionSheet is not designed to be subclassed, nor should you add views to its hierarchy. If you need to present a sheet with more customization than provided by the UIActionSheet API, you can create your own and present it modally with presentViewController:animated:completion:. My guess is your seeing exactly why. The … Read more