Runtime exception is coming when i show UIAlertController(ActionSheet) in iOS8 Beta5+ Xcode6.
This Bug is only happening in
On iPad the alert will be displayed as a popover using the new UIPopoverPresentationController, it requires that you specify an anchor point for the presentation of the popover using one of the three following properties:
In order to specify the anchor point you will need to obtain a reference to the UIAlertController's UIPopoverPresentationController and set one of the properties as follows:
alertController.popoverPresentationController.sourceView = parentView;