ボタンの有効化または無効化をアニメーション化する方法はありますか? 次のことを試しましたが、成功しませんでした。この時点で、有効なプロパティは不透明度のようにアニメーション化できないと推測していますが、間違っていることを願っています。
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:1.0f];
theButton.enabled = YES;
[UIView setAnimationDelegate:self];
[UIView commitAnimations];
方法がないなんて信じられないsetEnabled:(BOOL)enabled animated:(BOOL)animated
。