ios - 为多个 UIAlertController 分派(dispatch) asyncAfter

标签 ios swift grand-central-dispatch uialertcontroller dispatch-async

我有一个调度异步,我希望屏幕上弹出 4 个警报......然后在显示新警报之前每个警报都被关闭。 (我在我的警报之间设置了 3 秒的延迟)

class ViewController: UIViewController {

    var counter = 1

    override func viewDidLoad() {
        super.viewDidLoad()

        for _ in 1...4{
            DispatchQueue.main.asyncAfter(deadline: .now() + 3.0 * Double(counter)  , execute: {
                print("called")
                self.showAlert()
            })
        }
    }

    func showAlert(){

        let alert = UIAlertController(title: "sampleTitle \(counter)", message: "sampleMessage \(counter)", preferredStyle: .alert)
        let action = UIAlertAction(title: "OK", style: .default, handler: nil)
        alert.addAction(action)

        counter += 1
        if self.presentedViewController != nil {
            dismiss(animated: true, completion: nil)
            UIApplication.topViewController()?.present(alert, animated: true, completion: nil)
        }else{
            UIApplication.topViewController()?.present(alert, animated: true, completion: nil)
        }
    }
}

问题 1: 但由于某种原因,整个 for 循环 的执行没有任何延迟。我猜我不理解主队列是串行队列的一些事情。

问题 2:即使我关闭了 presentedViewController,我的控制台中也会出现以下日志。

called
called
called
called
2017-06-26 11:10:57.000 topViewAndAlertTest[3360:210226] Warning: Attempt to dismiss from view controller <topViewAndAlertTest.ViewController: 0x7fe630c03350> while a presentation or dismiss is in progress!
2017-06-26 11:10:57.001 topViewAndAlertTest[3360:210226] Warning: Attempt to present <UIAlertController: 0x7fe630c04180> on <UIAlertController: 0x7fe630f06fe0> while a presentation is in progress!
2017-06-26 11:10:57.001 topViewAndAlertTest[3360:210226] Warning: Attempt to dismiss from view controller <topViewAndAlertTest.ViewController: 0x7fe630c03350> while a presentation or dismiss is in progress!
2017-06-26 11:10:57.001 topViewAndAlertTest[3360:210226] Warning: Attempt to present <UIAlertController: 0x7fe630c06b40> on <UIAlertController: 0x7fe630f06fe0> while a presentation is in progress!

仅供引用,我的 topviewcontroller 正在使用此 answer 中的代码

问题 3: 只弹出 2 个警报...我从来没有看到第 3、4 个警报!


编辑:

经过rmaddy的建议,我的错误略有改变:

called
called
called
called
2017-06-26 11:59:33.417 topViewAndAlertTest[4834:441163] Warning: Attempt to dismiss from view controller <topViewAndAlertTest.ViewController: 0x7fb596d05a30> while a presentation or dismiss is in progress!
2017-06-26 11:59:33.417 topViewAndAlertTest[4834:441163] Warning: Attempt to dismiss from view controller <topViewAndAlertTest.ViewController: 0x7fb596d05a30> while a presentation or dismiss is in progress!

我少收到 2 个警告。但是仍然:只要警报 1 出现在屏幕上,警报 2 就会将其关闭,仅此而已!没有延迟没有第 3、4 个警报!

最佳答案

详情

xCode 8.3.2, swift 3.1

完整代码

import UIKit

class ViewController: UIViewController {

    var counter = 1

    private var alertViewController: UIAlertController?

    override func viewDidLoad() {
        super.viewDidLoad()

        DispatchQueue.global(qos: .utility).async {
            for _ in 1...4 {
                sleep(2)
                DispatchQueue.main.async {
                    print("called")
                    self.showAlert()
                }
            }
        }
    }

    private func createAlertView() -> UIAlertController {
        let alertViewController = UIAlertController(title: "sampleTitle \(counter)", message: "sampleMessage \(counter)", preferredStyle: .alert)
        let action = UIAlertAction(title: "OK", style: .default, handler: nil)
        alertViewController.addAction(action)
        return alertViewController
    }

    func showAlert(){

        let presentAlert = {
            DispatchQueue.main.async { [weak self] in
                if let _self = self {
                    _self.alertViewController = _self.createAlertView()
                    UIApplication.topViewController()?.present(_self.alertViewController!, animated: true, completion: nil)
                }
            }
        }

        DispatchQueue.main.async { [weak self] in
            if let alertViewController = self?.alertViewController {
                alertViewController.dismiss(animated: true) {
                    presentAlert()
                }
            } else {
                presentAlert()
            }
            self?.counter += 1
        }
    }
}

extension UIApplication {
    class func topViewController(base: UIViewController? = (UIApplication.shared.delegate as! AppDelegate).window?.rootViewController) -> UIViewController? {
        if let nav = base as? UINavigationController {
            return topViewController(base: nav.visibleViewController)
        }
        if let tab = base as? UITabBarController {
            if let selected = tab.selectedViewController {
                return topViewController(base: selected)
            }
        }
        if let presented = base?.presentedViewController {
            return topViewController(base: presented)
        }
        return base
    }
}

关于ios - 为多个 UIAlertController 分派(dispatch) asyncAfter,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44763320/

相关文章:

ios - Restkit 0.20 中的 didReceiveResponse 委托(delegate)方法

iphone - 我可以使用应用内购买来租借视频吗?

ios - 在 Swift 中从 ATR 确定卡号

ios - 在 XCTest (UITesting) 中获取设备名称

macos - pthread_kill 到 GCD 管理的线程

ios - 为什么GCD,ObjC和Swift之间的性能差距如此之大

ios - UISegmentedControl 没有执行目标方法?

ios - Spritekit游戏在iPad模拟器上出现严重滞后

ios - Swift:如何使用 SwiftUI 4 根据侧栏选择状态更改 DetailView?

ios - 连续两次调用dispatch_source_create()时崩溃