ios - UIAlertController的Action事件反應有點慢?
ringa_lee
ringa_lee 2017-05-17 10:04:26
0
1
865

直接貼上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)
    }

navigationControllerpop感覺特別慢,點擊之後,感覺有個2秒的延遲才回到上層介面,微信的放棄修改支付密碼,點完之後界面立刻回來了,有沒有誰知道有什麼辦法?

ringa_lee
ringa_lee

ringa_lee

全部回覆(1)
仅有的幸福

我用你程式碼寫了一個demo,發現並沒有2秒的延遲。

說明你程式碼的問題不是這一塊內容。

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!