How to create dispatch queue in Swift 3

前端 未结 15 2099
余生分开走
余生分开走 2020-11-22 16:35

In Swift 2, I was able to create queue with the following code:

let concurrentQueue = dispatch_queue_create(\"com.swift3.imageQueue\", DISPATCH_QUEUE_CONCURR         


        
15条回答
  •  一个人的身影
    2020-11-22 17:22

    Swift 3

    you want call some closure in swift code then you want to change in storyboard ya any type off change belong to view your application will crash

    but you want to use dispatch method your application will not crash

    async method

    DispatchQueue.main.async 
    {
     //Write code here                                   
    
    }
    

    sync method

    DispatchQueue.main.sync 
    {
         //Write code here                                  
    
    }
    

提交回复
热议问题