在NSmutableArray中淡入和淡出图像

时间:2014-06-21 06:39:19

标签: ios iphone xcode animation uiimageview

我想知道基于我的代码,如何在NSArray中的每个图像之间添加淡入淡出效果。因为我使用这些图像作为背景。改变背景而不淡入淡出看起来很可怕。

这是我的代码。

- (void)viewDidLoad
{
    [super viewDidLoad];
    NSArray *imageNames = @[@"1.jpg", @"2.png", @"3.png", @"4.png",
                            @"5.png"];

    NSMutableArray *images = [[NSMutableArray alloc] init];
    for (int i = 0; i < imageNames.count; i++) {
        [images addObject:[UIImage imageNamed:[imageNames objectAtIndex:i]]];
    }

    // Normal Animation
    UIImageView *animationImageView = [[UIImageView alloc] initWithFrame:self.view.bounds];
    animationImageView.animationImages = images;
    animationImageView.animationDuration = 9;

    [self.background addSubview:animationImageView];
    [animationImageView startAnimating];}

0 个答案:

没有答案