私はこのコードを持っていますdidFinishLaunchingWithOptions
:
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
UIViewController *myViewController = [[UINavigationController alloc] initWithRootViewController:[[ViewController alloc] init]];
self.window.rootViewController = myViewController;
[self.window makeKeyAndVisible];
UIImageViewを表示し、アニメーションを再生し、その後非表示にしたい。このコードを既存のコードに追加していますが、何も起こりません。
UIImageView *imgView = [[UIImageView alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
NSArray *animationFrames = [[NSArray alloc]initWithObjects:blablahblah, nil];
imgView.animationImages = animationFrames;
imgView.animationDuration = 1.5;
imgView.animationRepeatCount = 1;
私はここで何が間違っているのですか?前もって感謝します!