コードのアウトレットにリンクされているストーリーボードに UIImageView があります。コードを実行すると、プログラムで作成したアニメーションではなく、ストーリーボードが示す静止画像のみが表示されます。何か案は?
for(int i=0; i<4; i++) {
UIImage *image = [UIImage imageNamed:[NSString stringWithFormat:@"loading%d",i]];
[self.images addObject:image];
}
self.loadingView.animationImages = self.images;
self.loadingView.animationDuration = 2;
self.loadingView.animationRepeatCount = 1;
[self.loadingView startAnimating];
注: loadingView は UIImageView で、images は NSMutableArray です。