Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
-(void)viewDidLoad { [super viewDidLoad]; imgView.animationImages = [NSArray arrayWithObjects: [UIImage imageNamed:@"splash_slide_1.png"],[UIImage imageNamed:@"splash_slide_1.png"] }
イメージビューで画像のフェードイン・フェードアウトを繰り返したい
UIImage * toImage = [UIImage imageNamed:@"myname.png"]; [UIView transitionWithView:self.view duration:5.0f options:UIViewAnimationOptionTransitionCrossDissolve animations:^{ self.imageView.image = toImage; } completion:nil];