我有一个问题希望你们能帮助我。所以几乎我有一个基本动画,我希望它只在应用程序启动时出现,而不是在我进入应用程序后实际返回页面时出现,因为现在我在 viewWillAppear 方法中拥有它。下面是我的动画代码。任何帮助将不胜感激。
另外,正如您在查看我的代码时可能会说的那样,我试图将图像淡入,如果您知道更好的方法,您也可以告诉我吗?但这很好用。
我的.m:
#import "HomeViewController.h"
@interface HomeViewController ()
@property (nonatomic,weak) IBOutlet UIImageView *logo;
@end
@implementation HomeViewController
- (void)viewDidAppear:(BOOL)animated
{
[[self logo]setAlpha:0];
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];
[UIView setAnimationDuration:2];
[UIView setAnimationDelay:0];
[[self logo]setAlpha:1];
[UIView commitAnimations];
}