我想让 xCode 中的图像淡入

I want my image in xCode to fade in

我希望我的图像淡入,而不是淡出。使用此代码,它是倒退的。有帮助吗?

[UIView animateWithDuration:3.0 动画:^{ self.circleOne.alpha = 0.0;

    }];

如果您的 circleOne 的 alpha 为 0(不可见),您需要做的就是将 alpha 设置为 1:

[UIView animateWithDuration:3.0 animations:^{
 self.circleOne.alpha = 1.0;
}];

编辑:

如果您想在动画出现在屏幕上之前制作动画,可以在将 circleOne 添加到它的父视图之前将 alpha 设置为 0。

假设 circleOne 是一个 UIImageView 它将是这样的:

circleOne = [[UIImageView alloc] initWithImage: [UIImage imageNamed:@"imageName,jpg"]];
circleOne.alpha = 0.0;
[parentView addSubview: circleOne];
//run the animation explained before