iOS-列表页的过渡动画

实现效果

项目开发过程中,我们在有些页面展示之前,需要一些页面效果来过渡。例如:网络数据加载出来之前,页面的展示;复杂的业务逻辑处理完成之前的页面显示;上传文件未完成之前的页面样式等等。当然,需求不同,其展示样式也就千变万化。今天来实现一下上图所示的功能。
本篇文章,只作为个人学习使用。
具体实现代码如下:
创建UIView的category
UIView+Animated.h文件

#import <UIKit/UIKit.h>

typedef enum {
    TABViewLoadAnimationDefault = 0, //默认没有动画
    TABViewLoadAnimationShort,  //动画先变短再变长
    TABViewLoadAnimationLong  //动画先变长再变短
}TABViewLoadAnimationStyle; //view动画类型枚举

@interface UIView (Animated)

@property (nonatomic) TABViewLoadAnimationStyle loadStyle;

@end

UIView+Animated.m文件

#import "UIView+Animated.h"
#import <objc/runtime.h>

@implementation UIView (Animated)

- (TABViewLoadAnimationStyle)loadStyle {
    NSNumber *value = objc_getAssociatedObject(self, @selector(loadStyle));
    return value.intValue;
}

- (void)setLoadStyle:(TABViewLoadAnimationStyle)loadStyle {
    objc_setAssociatedObject(self, @selector(loadStyle), @(loadStyle), OBJC_ASSOCIATION_ASSIGN);
}

@end

创建UITableView的category
UITableView+Animated.h文件

#import <UIKit/UIKit.h>

typedef enum {
    TABTableViewAnimationDefault = 0, //没有动画,默认
    TABTableViewAnimationStart,  //开始动画
    TABTableViewAnimationEnd  //结束动画
}TABTableViewAnimationStyle; //table动画状态枚举

@interface UITableView (Animated)

@property (nonatomic) TABTableViewAnimationStyle animatedStyle;

@end

UITableView+Animated.m文件

#import "UITableView+Animated.h"
#import <objc/runtime.h>

@implementation UITableView (Animated)

+ (void)load {
    
    //Ensure that the exchange method executed only once.
    //保证交换方法只执行一次
    static dispatch_once_t onceToken;
    
    dispatch_once(&onceToken, ^{
        
        //Gets the viewDidLoad method to the class,whose type is a pointer to a objc_method structure.
        //获取到这个类的viewDidLoad方法,它的类型是一个objc_method结构体的指针
        Method  originMethod = class_getInstanceMethod([self class], @selector(setDelegate:));
        
        //Get the method you created.
        //获取自己创建的方法
        Method newMethod = class_getInstanceMethod([self class], @selector(tab_setDelegate:));
        
        IMP newIMP = method_getImplementation(newMethod);
        
        BOOL isAdd = class_addMethod([self class], @selector(tab_setDelegate:), newIMP, method_getTypeEncoding(newMethod));
        
        if (isAdd) {
            class_replaceMethod([self class], @selector(setDelegate:), newIMP, method_getTypeEncoding(newMethod));
        }else {
            //exchange
            method_exchangeImplementations(originMethod, newMethod);
        }
    });
}

- (void)tab_setDelegate:(id<UITableViewDelegate>)delegate {
    
    //Ensure that the exchange method executed only once.
    //保证交换方法只执行一次
    static dispatch_once_t onceToken;
    
    dispatch_once(&onceToken, ^{
        
        SEL oldSelector = @selector(tableView:numberOfRowsInSection:);
        SEL newSelector = @selector(tab_tableView:numberOfRowsInSection:);
        Method oldMethod_del = class_getInstanceMethod([delegate class], oldSelector);
        Method oldMethod_self = class_getInstanceMethod([self class], oldSelector);
        Method newMethod = class_getInstanceMethod([self class], newSelector);
        
        // 若未实现代理方法,则先添加代理方法
        BOOL isSuccess = class_addMethod([delegate class], oldSelector, class_getMethodImplementation([self class], newSelector), method_getTypeEncoding(newMethod));
        if (isSuccess) {
            class_replaceMethod([delegate class], newSelector, class_getMethodImplementation([self class], oldSelector), method_getTypeEncoding(oldMethod_self));
        } else {
            
            // 若已实现代理方法,则添加 hook 方法并进行交换
            BOOL isVictory = class_addMethod([delegate class], newSelector, class_getMethodImplementation([delegate class], oldSelector), method_getTypeEncoding(oldMethod_del));
            if (isVictory) {
                class_replaceMethod([delegate class], oldSelector, class_getMethodImplementation([self class], newSelector), method_getTypeEncoding(newMethod));
            }
        }
    });
    
    [self tab_setDelegate:delegate];
}

#pragma mark -  TABTableViewDelegate

- (NSInteger)tab_tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    if (tableView.animatedStyle == TABTableViewAnimationStart) {
        return 5;
    }
    return [self tab_tableView:tableView numberOfRowsInSection:section];
}

#pragma mark -  Getter / Setter

- (TABTableViewAnimationStyle)animatedStyle {
    NSNumber *value = objc_getAssociatedObject(self, @selector(animatedStyle));
    
    //动画过程中设置为不可滚动,暂时不要修改,滚动会造成一定的问题
    if (value.intValue == 1) {
        self.scrollEnabled = NO;
    }else {
        self.scrollEnabled = YES;
    }
    return value.intValue;
}

- (void)setAnimatedStyle:(TABTableViewAnimationStyle)animatedStyle {
    objc_setAssociatedObject(self, @selector(animatedStyle), @(animatedStyle), OBJC_ASSOCIATION_ASSIGN);
}

@end

创建LGJViewAnimated 继承自NSObject

#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
#import "UIView+Animated.h"

@interface LGJViewAnimated : NSObject

+ (void)startOrEndAnimated:(UITableViewCell *)cell;

/**
 加载CALayer,设置动画,同时启动

 @param view 需要动画的view
 @param color 动画颜色
 */
+ (void)initLayerWithView:(UIView *)view withColor:(UIColor *)color;

/**
 根据动画类型设置对应基础动画

 @param style 动画类型
 @return 动画
 */
+ (LGJViewAnimated *)scaleXAnimation:(TABViewLoadAnimationStyle)style;

@end


#import "LGJViewAnimated.h"
#import "TABMethod.h"
#import "UITableView+Animated.h"

@implementation LGJViewAnimated

+ (void)startOrEndAnimated:(UITableViewCell *)cell {
    
    UITableView *superView = (UITableView *)cell.superview;
    
    switch (superView.animatedStyle) {
            
        case TABTableViewAnimationStart:
            
            //添加并开启动画
            for (int i = 0; i < cell.contentView.subviews.count; i++) {
                UIView *v = cell.contentView.subviews[i];
                if ( v.loadStyle != TABViewLoadAnimationDefault ) {
                    [TABViewAnimated initLayerWithView:v withColor:kBackColor];
                }
            }
            break;
            
        case TABTableViewAnimationEnd:
            
            if ( cell.contentView.subviews.count > 0 ) {
                
                //移除动画图层
                for (int i = 0; i < cell.contentView.subviews.count; i++) {
                    
                    UIView *v = cell.contentView.subviews[i];
                    
                    if ( v.layer.sublayers.count > 0 ) {
                        
                        NSArray<CALayer *> *subLayers = v.layer.sublayers;
                        NSArray<CALayer *> *removedLayers = [subLayers filteredArrayUsingPredicate:[NSPredicate predicateWithBlock:^BOOL(id  _Nullable evaluatedObject, NSDictionary<NSString *,id> * _Nullable bindings) {
                            
                            if ([evaluatedObject isKindOfClass:[CALayer class]]) {
                                
                                //找出CALayer是你需要移除的,这里根据背景色来判断的
                                CALayer *layer = (CALayer *)evaluatedObject;
                                if (CGColorEqualToColor(layer.backgroundColor,kBackColor.CGColor)) {
                                    return YES;
                                }
                                return NO;
                            }
                            return NO;
                        }]];
                        
                        [removedLayers enumerateObjectsUsingBlock:^(CALayer * _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
                            [obj removeFromSuperlayer];
                        }];
                    }
                }
            }
            break;
            
        default:
            break;
    }
}

+ (void)initLayerWithView:(UIView *)view withColor:(UIColor *)color {
    
    CALayer *layer = [[CALayer alloc]init];
    layer.frame = CGRectMake(0, 0, view.frame.size.width, view.frame.size.height);
    layer.backgroundColor = kBackColor.CGColor;
    layer.anchorPoint = CGPointMake(0, 0);
    layer.position = CGPointMake(0, 0);
    // 添加一个基本动画
    [layer addAnimation:[self scaleXAnimation:view.loadStyle] forKey:@"scaleAnimation"];
    
    [view.layer addSublayer:layer];
}

+ (CABasicAnimation *)scaleXAnimation:(TABViewLoadAnimationStyle)style {
    
    CABasicAnimation *anim = [CABasicAnimation animationWithKeyPath:@"transform.scale.x"];
    anim.removedOnCompletion = NO;
    anim.duration = 0.4;
    anim.autoreverses = YES;  //往返都有动画
    anim.repeatCount = MAXFLOAT;  //执行次数
    
    switch (style) {
            
        case TABViewLoadAnimationShort:{
            anim.toValue = @0.6;
        }
        break;
            
        case TABViewLoadAnimationLong:{
            anim.toValue = @1.6;
        }
        break;
            
        default:{
            anim.toValue = @0.6;
        }
    }
    
    return anim;
}

@end

以上就是具体实现工作过程,那么怎么用呢?很简单,我们只需要在需要此功能列表的cell 的layoutSubviews方法的最后加入代码

    //运行动画/移除动画
    [TABViewAnimated startOrEndAnimated:self];

在需要开始动画的时刻执行

        _mainTV.animatedStyle = TABTableViewAnimationStart;  //开启动画

在需要结束动画的时刻执行

    //停止动画
    _mainTV.animatedStyle = TABTableViewAnimationEnd;

即可。
另外,在动画页面显示的时候尽量不要做给cell赋值的操作

    //在加载动画的时候,即未获得数据时,不要走加载控件数据的方法
    if (_mainTV.animatedStyle != TABTableViewAnimationStart) {
        [cell initWithData:dataArray[indexPath.row]];
    }
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,684评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,143评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,214评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,788评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,796评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,665评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,027评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,679评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 41,346评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,664评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,766评论 1 331
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,412评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,015评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,974评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,203评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,073评论 2 350
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,501评论 2 343