只有可见视图动画

时间:2015-06-29 19:45:57

标签: ios icarousel

我有以下实现。每个视图都有动画,但我的问题是所有动画都运行无论是可见还是不可见。我只希望当前看到(活动)视图动画有效,其他视图动画被禁用,除非用户滚动它。

- (UIView *)carousel:(iCarousel *)carousel viewForItemAtIndex:(NSInteger)index reusingView:(UIView *)view{

    if (view == nil){
        if(index==0)
        {
            view=[[UIImageView alloc]initWithFrame:CGRectMake(30, 30, 600, 600)];
            ((UIImageView *)view).animationImages=[NSArray arrayWithObjects:[UIImage imageNamed:@"Walking-1.png"],
                                 [UIImage imageNamed:@"Walking-2.png"],
                                 [UIImage imageNamed:@"Walking-3.png"],
                                 [UIImage imageNamed:@"Walking-4.png"],
                                 [UIImage imageNamed:@"Walking-5.png"],nil];

            ((UIImageView *)view).animationDuration = 1.5;
            [((UIImageView *)view) startAnimating];
        }

        else if(index==1)
        {
            view=[[UIImageView alloc]initWithFrame:CGRectMake(30, 30, 600, 600)];
            ((UIImageView *)view).animationImages=[NSArray arrayWithObjects:[UIImage imageNamed:@"Biking-1.png"],
                              [UIImage imageNamed:@"Biking-2.png"],
                              [UIImage imageNamed:@"Biking-3.png"],
                              [UIImage imageNamed:@"Biking-4.png"],                                                   
                              [UIImage imageNamed:@"Biking-5.png"],nil];

            ((UIImageView *)view).animationDuration = 1.5;
            [((UIImageView *)view) startAnimating];
        }

        view.contentMode = UIViewContentModeCenter;
        [view.layer setMasksToBounds:YES];
    }
    return view;
}

1 个答案:

答案 0 :(得分:2)

iCarouselDelegate有一个方法carouselCurrentItemIndexDidChange你应该在那里停止/启动你的动画,但不是在数据源方法中。因此,将所有动画保存到数组中,索引等于项目索引,并在currentItemIndex中使用carousel的carouselCurrentItemIndexDidChange属性来启动适当的动画。您需要在课程的某个地方存储以前的索引,以便能够在开始新动画之前停止上一个动画。

    @import UIKit;

    @interface CarouselController: UIViewController
    @property(nonatomic, readonly) NSArray *carouselItems;
    @property(nonatomic, assign) NSInteger lastItemIndex;
    @end

    @implementation CarouselController

    - (instancetype)init {
    self = [super init];

    if (self) {
        [self initializeCarouselContent];
    }

    return self;
}

- (instancetype)initWithCoder:(NSCoder *)aDecoder {
    self = [super initWithCoder:aDecoder];

    if (self) {
        [self initializeCarouselContent];
    }

    return self;
}

- (instancetype)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
    self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];

    if (self) {
        [self initializeCarouselContent];
    }

    return self;
}

- (void)initializeCarouselContent {
    self.lastItemIndex = 0;
    _carouselItems = @[[CarouselController activityAnimationView: @"Walking"], [CarouselController activityAnimationView: @"Biking"]];

    UIImageView *currentAnimation = self.carouselItems[self.lastItemIndex];
    [currentAnimation startAnimating];
}

    + (UIImageView *)activityAnimationView:(NSString *)activity {
        UIImageView *result = [[UIImageView alloc]initWithFrame:CGRectMake(30, 30, 600, 600)];

        NSMutableArray *activityImages = [[NSMutableArray alloc] init];
        for (int activityIndex = 1; activityIndex <= 5; activityIndex ++) {
            NSString *imageName = [NSString stringWithFormat:@"%@-%i.png", activity, activityIndex];
            [activityImages addObject:[UIImage imageNamed:imageName]];
        }
        result.animationImages = activityImages;
        result.animationDuration = 1.5;

        result.contentMode = UIViewContentModeCenter;
        [result.layer setMasksToBounds:YES];

        return result;
    }


   - (NSInteger)numberOfItemsInCarousel:(iCarousel *)carousel { 
        return [_carouselItems count];
     }

    - (UIView *)carousel:(iCarousel *)carousel viewForItemAtIndex:(NSInteger)index reusingView:(UIView *) view{

        if (view == nil){
            view = self.carouselItems[index];
        }

        return view;
    }

    - (void)carouselCurrentItemIndexDidChange:(iCarousel *)carousel {
        if (carousel.currentItemIndex != self.lastItemIndex) {
            UIImageView *currentAnimation = self.carouselItems[self.lastItemIndex];
            [currentAnimation stopAnimating];

            self.lastItemIndex = carousel.currentItemIndex;

            currentAnimation = self.carouselItems[self.lastItemIndex];
            [currentAnimation startAnimating];
        }
    }

    @end
相关问题