全体の流れ
1.NSArrayにいくつかの画像をセット
2.UIImageViewにそのArrayをセット
3.各種設定(タイミングとか)をセット
4.アニメーションスタート
UIImage *image3 = [UIImage imageNamed:@”hoge3.png”];
NSArray *images = [NSArray arrayWithObjects:image1, image2, image3, image4, nil];
[self.imageView startAnimating];
// アニメーションを終了
// [self.imageView stopAnimating];
残念ながら画像が切り替わる時のエフェクトはつけられない。パッ、パッて変わる。