私は、画像を循環して、画像間のある種のフェードインとフェードアウトの遷移を作成する必要がある何かに取り組んでいます。私はJavaScriptに慣れているので、当然、フェードインするイメージビューの深さを変更したいと思います。上部に表示するビューを選択する方法はありますか?それとも、私が達成したいことを行うためのより良い方法はありますか?
CGRect imageFrame = CGRectMake(0.0, 0.0, 1024.0, 280.0);
UIImageView *image_one = [[UIImageView alloc] initWithFrame:imageFrame];
image_one.image = [UIImage imageNamed:@"image_one.png"];
[self.view addSubview:image_one];
UIImageView *image_two = [[UIImageView alloc] initWithFrame:imageFrame];
image_two.image = [UIImage imageNamed:@"image_two.png"];
[self.view addSubview:image_two];