iOS 坑记录

  1. 在UIAlertViewController出现之后,调用pop方式返回上一级界面时,出现一个bug:

popToViewController:transition: called on while an existing transition or presentation is occurring; the navigation stack will not be updated.

回不去了。

解决:dismiss掉UIAlertController,再调用pop方法。

你可能感兴趣的:(iOS 坑记录)