// // MaskTimeTopAnimationView.h // GIGA // // Created by lianxiang on 2018/9/26. // Copyright © 2018年 com.giga.ios. All rights reserved. // #import @class MaskTimeTopAnimationView; @protocol MaskTimeTextViewDelegate @optional - (void)gyChangeTextView:(MaskTimeTopAnimationView *)textView didTapedAtIndex:(NSInteger)index; @end @interface MaskTimeTopAnimationView : UIView @property (nonatomic, assign) id delegate; - (void)animationWithTexts:(NSArray *)textAry; - (void)stopAnimation; @end