我在这里遇到一些问题。我有一个名为
的方法- (void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
对于UIImageView
,它在图像静止时工作正常,touchesBegan
方法被调用...但是当我UIImageView
动画时,touchesBegan
停止工作。
为什么会这样?
答案 0 :(得分:0)
为了在动画期间接收touchesBegan,您必须在创建动画时包含UIViewAnimationOptionAllowUserInteraction
动画选项。有一个很好的讨论here。