我想在用 for 反向更改 alpha 参数时产生类似于溶解的效果,但图像不会改变 beetwen 0 和 1 只有在 alpha 变为 1 时才会改变。PD。在我的代码中,图像是 setAlpha = 0 这是该方法的代码:
-(void)splash:(UIImageView *)img{
for (double i=0.0; i<=1.0; i=i+0.1) {
for (int x=0;x<=10000;x++){
for (int h=0;h<=10000;h++){
}
}
NSLog(@"%g",i);
[img setAlpha:i];
[img reloadInputViews];
}
}