第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

如何在沒(méi)有視圖控制器的情況下顯示UIAlertController?

如何在沒(méi)有視圖控制器的情況下顯示UIAlertController?

PIPIONE 2019-06-29 16:56:26
如何在沒(méi)有視圖控制器的情況下顯示UIAlertController?場(chǎng)景:用戶(hù)點(diǎn)擊視圖控制器上的按鈕。視圖控制器是導(dǎo)航堆棧中的最頂層(顯然)。TAP調(diào)用另一個(gè)類(lèi)上調(diào)用的實(shí)用程序類(lèi)方法。在那里發(fā)生了一件壞事,我想在控件返回到視圖控制器之前在那里顯示一個(gè)警告。+ (void)myUtilityMethod {     // do stuff     // something bad happened, display an alert.}這是有可能的UIAlertView(但可能不太恰當(dāng))。在這種情況下,您如何表示UIAlertController,就在那里myUtilityMethod?
查看完整描述

3 回答

?
BIG陽(yáng)

TA貢獻(xiàn)1859條經(jīng)驗(yàn) 獲得超6個(gè)贊

您可以使用SWIFT 2.2執(zhí)行以下操作:

let alertController: UIAlertController = ...UIApplication.sharedApplication().keyWindow?.rootViewController?.presentViewController(alertController, animated: true, completion: nil)

以及SWIFT 3.0:

let alertController: UIAlertController = ...UIApplication.shared.keyWindow?.rootViewController?.present(alertController, animated: true, completion: nil)


查看完整回答
反對(duì) 回復(fù) 2019-06-29
?
梵蒂岡之花

TA貢獻(xiàn)1900條經(jīng)驗(yàn) 獲得超5個(gè)贊

斯威夫特

let alertController = UIAlertController(title: "title", message: "message", preferredStyle: .alert)//...var rootViewController = UIApplication.shared.keyWindow?.rootViewControllerif let navigationController = rootViewController as? UINavigationController {
    rootViewController = navigationController.viewControllers.first}if let tabBarController = rootViewController as? UITabBarController {
    rootViewController = tabBarController.selectedViewController}//...rootViewController?.present(alertController, animated: true, completion: nil)

目標(biāo)-C

UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"Title" message:@"message" preferredStyle:UIAlertControllerStyleAlert];//...id rootViewController = [UIApplication sharedApplication].delegate.window.rootViewController;if([rootViewController isKindOfClass:[UINavigationController class]]){
    rootViewController = ((UINavigationController *)rootViewController).viewControllers.firstObject;}if([rootViewController isKindOfClass:[UITabBarController class]]){
    rootViewController = ((UITabBarController *)rootViewController).selectedViewController;}//...[rootViewController presentViewController:alertController animated:YES completion:nil];


查看完整回答
反對(duì) 回復(fù) 2019-06-29
  • 3 回答
  • 0 關(guān)注
  • 1183 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢(xún)優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)