我有一个特定的UIButton,我想在显示主视图时反复动画(淡入,淡出)。但是我还有其他需要用户交互的对象,比如TableView和其他UIButtons。
添加动画后,即使我已添加UIViewAnimationOptionAllowUserInteraction
,该应用也不会响应任何用户互动。
这是我的代码:
[UIView animateWithDuration:2.0
delay:0.0
options:UIViewAnimationOptionAllowUserInteraction|UIViewAnimationOptionRepeat|UIViewAnimationOptionAutoreverse
animations:^{
sendOrderButton.alpha = 0.0;
}
completion:nil
];
提前谢谢! :)