在iPad,iOS8和Objective-C中,UIAlertController没有显示取消按钮

在iPad,iOS8和Objective-C中,UIAlertController没有显示取消按钮,第1张

概述我正在尝试使用UIAlertController.我需要一个带有两个按钮的d出框 – “取消”和“删除并退出”.但我只能看到“删除并退出”按钮而不是取消按钮.这是代码: – NSString *confirmText = "Hi"; UIAlertController *alert = [UIAlertController alertControllerWithTitle:confirmTe 我正在尝试使用UIAlertController.我需要一个带有两个按钮的d出框 – “取消”和“删除并退出”.但我只能看到“删除并退出”按钮而不是取消按钮.这是代码: –

Nsstring *confirmText = "Hi";   UIAlertController *alert = [UIAlertController alertControllerWithTitle:confirmText message:@"" preferredStyle:UIAlertControllerStyleActionSheet];// Created a deleted actionUIAlertAction *destroyAction = [UIAlertAction actionWithTitle:@"Delete and Sign Out"                                         style:UIAlertActionStyleDestructive                                       handler:^(UIAlertAction *action) {                                           NSLog(@"Delete Action pressed");                                           [self signout];                                       }];UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:@"Cancel"                                                       style:UIAlertActionStyleCancel                                                     handler:nil];[alert.vIEw setTintcolor:[UIcolor graycolor]];[alert addAction:cancelAction];[alert addAction:destroyAction];[alert setModalPresentationStyle:UIModalPresentationPopover];UIPopoverPresentationController *popPresenter = [alert popoverPresentationController];// Set the sourceVIEw.popPresenter.sourceVIEw = logoutbutton;popPresenter.sourceRect = logoutbutton.bounds;[self presentVIEwController:alert animated:YES completion:nil];

不幸的是,我无法发布图片,所以如果您需要更多说明,请告诉我.

解决方法 在iOS8上,仅在需要时显示取消按钮.如果您在iPhone上运行该应用程序,则可见.如果您在iPad上运行应用程序,则不显示取消按钮,并且当用户点击d出窗口外时,将调用取消 *** 作的处理程序(样式:UIAlertActionStyleCancel). 总结

以上是内存溢出为你收集整理的在iPad,iOS8和Objective-C中,UIAlertController没有显示取消按钮全部内容,希望文章能够帮你解决在iPad,iOS8和Objective-C中,UIAlertController没有显示取消按钮所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1084313.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-27
下一篇 2022-05-27

发表评论

登录后才能评论

评论列表(0条)

保存