隐式动画默认是不接收点击事件的,需要我们手动打开UIViewAnimationOptionAllowUserInteraction。
[UIView animateWithDuration:0.8 delay:0.0 options:UIViewAnimationOptionCurveEaseIn|UIViewAnimationOptionAllowUserInteraction animations:^{ }completion:^(BOOLfinished) { }];
隐式动画默认是不接收点击事件的,需要我们手动打开UIViewAnimationOptionAllowUserInteraction。
[UIView animateWithDuration:0.8 delay:0.0 options:UIViewAnimationOptionCurveEaseIn|UIViewAnimationOptionAllowUserInteraction animations:^{ }completion:^(BOOLfinished) { }];