代码之家  ›  专栏  ›  技术社区  ›  Amit

DispatchQueue:不能在非主线程上用asCopy=NO调用

  •  5
  • Amit  · 技术社区  · 6 年前

    我正在介绍 UIAlertController 在主线程上为:

    class HelperMethodClass: NSObject {
    
        class func showAlertMessage(message:String, viewController: UIViewController) {
            let alertMessage = UIAlertController(title: "", message: message, preferredStyle: .alert)
    
            let cancelAction = UIAlertAction(title: "Ok", style: .cancel)
    
            alertMessage.addAction(cancelAction)
    
            DispatchQueue.main.async {
                viewController.present(alertMessage, animated: true, completion: nil)
            }
        }
    }
    

    UIViewController 作为:

    HelperMethodClass.showAlertMessage(message: "Any Message", viewController: self)
    

    但在控制台里,我得到了以下信息:

    在非主线程上不能用asCopy=NO调用[Assert]。

    是我做错了什么,还是我可以忽略这个信息?

    编辑

    感谢@NicolasMiari:

    DispatchQueue.main.async {
        HelperMethodClass.showAlertMessage(message: "Any Message", viewController: self)
    }
    

    以前它在控制台中显示消息的原因是什么?

    1 回复  |  直到 6 年前
        1
  •  65
  •   Ilya Kharabet    6 年前

    你应该调用 showAlertMessage

    class func showAlertMessage(message:String, viewController: UIViewController) {
        DispatchQueue.main.async {
            let alertMessage = UIAlertController(title: "", message: message, preferredStyle: .alert)
    
            let cancelAction = UIAlertAction(title: "Ok", style: .cancel)
    
            alertMessage.addAction(cancelAction)
    
            viewController.present(alertMessage, animated: true, completion: nil)
        }
    }
    
    推荐文章