সুইফটে 4.1 এবং এক্সকোড 10 এ
এখানে অ্যাডফাইভিউকন্ট্রোলার হ'ল দ্বিতীয় দর্শন নিয়ামক।
স্টোরিবোর্ড আইডি এএফভিসি
let next = self.storyboard?.instantiateViewController(withIdentifier: "AFVC") as! AddFileViewController
self.present(next, animated: true, completion: nil)
let dashboard = self.storyboard?.instantiateViewController(withIdentifier: "DBVC") as! DashboardViewController
self.navigationController?.pushViewController(dashboard, animated: true)
প্রয়োজনে থ্রেড ব্যবহার করুন ।
প্রাক্তন:
DispatchQueue.main.async {
let next = self.storyboard?.instantiateViewController(withIdentifier: "AFVC") as! AddFileViewController
self.present(next, animated: true, completion: nil)
}
আপনি যদি কিছু সময় পরে সরানো চান ।
প্রাক্তন:
DispatchQueue.main.asyncAfter(deadline: .now() + 5.0) {
let next = self.storyboard?.instantiateViewController(withIdentifier: "AFVC") as! AddFileViewController
self.present(next, animated: true, completion: nil)
}