0

UIViewAlert 变得可见后,不能使用多任务手势。我该如何解决?这是正常行为吗?

编辑:

看起来创建自定义视图是个好主意。我只是想知道,如果它可以做得很好,很容易。

4

2 回答 2

1

当 UIAlertView 出现时,它会冻结整个屏幕。您无法触摸屏幕,这就是您的手势不起作用的原因。首先关闭警报视图,然后您的手势将起作用。

于 2012-04-09T09:19:59.553 回答
0

This is normal behaviour, UIAlerts are designed to occupy the whole focus of the device. If you want to allow gestures, try creating your own UIView that overlays on top of your running application.

于 2012-04-09T09:07:49.287 回答