In iOS 7, I show actionSheet by \"showFromRect\":
[actionSheet showFromRect:rect inView:view animated:YES];
But in iOS 8, this doesn\'t wor
according to this https://developer.apple.com/library/ios/documentation/Uikit/reference/UIActionSheet_Class/index.html thread UIActionSheet is deprecated, you should use UIAlertController instead of UIActionSheet.
Thanks.