我有一个简单的UIButton
,我想用动画改变它的图像。
会发生什么事情,它会一路改变,没有延迟或动画:
[UIView animateWithDuration:1.5
delay:2.0
options: UIViewAnimationOptionCurveEaseInOut
animations:^{
[button setImage:darkCellimg forState:UIControlStateNormal];
}
completion:^(BOOL finished)
{
}];