簡體   English   中英

當我推視圖控制器時,導航需要花費時間

[英]When I push view controller its take time to navigate

let storyboard = UIStoryboard(name: "Main", bundle: nil)

let vc = storyboard.instantiateViewController(withIdentifier: "AbcViewController") as! AbcViewController

self.navigationController?.pushViewController(vc, animated: true)

我很樂意為您服務

請嘗試以下代碼:

DispatchQueue.main.async(execute: {
    let storyboard = UIStoryboard(name: "Main", bundle: nil)   
    let vc = storyboard.instantiateViewController(withIdentifier: "AbcViewController") as! AbcViewController

    self.navigationController?.pushViewController(vc, animated: true)
})

謝謝
亞什·謝卡達(Yash Shekhada)

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM