I can show the actionSheet in iOS 7 but cannot show in iOS 8 environment. Is there any way to trace?
UIActionSheet *_actionSheet = [[UIActionSheet alloc] initWithTitle:@"Account"
delegate:self
cancelButtonTitle:@"Close"
destructiveButtonTitle:@"Log Out"
otherButtonTitles:@"View Account", nil];
[_actionSheet showInView:appDel.window];
UIActionSheets
don't exist anymore iniOS8
they have been deprecated in favor ofUIAlertController
Have a read of developer.apple.com/Library/ios/documentation/UIKit/Reference/… – Bertie