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