Commit 33013035 authored by David黄金龙's avatar David黄金龙

主线程中跳转

parent 830760ee
......@@ -19,11 +19,12 @@ class YHJsApi: NSObject {
extension YHJsApi {
//4、跳转到 办证3 - 赴港时间预约界面
@objc func gotoAppointCertificateSyn(_ orderID : String) {
if let orderId = Int(orderID) {
let vc = YHCertificateAppointViewController()
vc.orderId = orderId
delegate?.navigationController?.pushViewController(vc)
DispatchQueue.main.async {
let vc = YHCertificateAppointViewController()
vc.orderId = orderId
self.delegate?.navigationController?.pushViewController(vc)
}
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment