直接貼上Button的點擊事件:
func cancelButton() {
let alertCtrl = UIAlertController.init(title: "是否放弃修改支付密码?", message: nil, preferredStyle: UIAlertControllerStyle.alert)
alertCtrl.addAction(UIAlertAction.init(title: "否", style: UIAlertActionStyle.cancel, handler: nil))
alertCtrl.addAction(UIAlertAction.init(title: "是", style: UIAlertActionStyle.default, handler: { (action: UIAlertAction) in
self.navigationController?.popViewController(animated: true)
}))
self.present(alertCtrl, animated: true, completion: nil)
}
navigationController
的pop
感覺特別慢,點擊是
之後,感覺有個2秒的延遲才回到上層介面,微信的放棄修改支付密碼,點完之後界面立刻回來了,有沒有誰知道有什麼辦法?
我用你程式碼寫了一個demo,發現並沒有2秒的延遲。
說明你程式碼的問題不是這一塊內容。