// // GYChangeTextView.h // GYShop // // Created by mac on 16/6/13. // Copyright © 2016年 GY. All rights reserved. // #import @class GYChangeTextView; @protocol GYChangeTextViewDelegate - (void)gyChangeTextView:(GYChangeTextView *)textView didTapedAtIndex:(NSInteger)index; @end @interface GYChangeTextView : UIView @property (nonatomic, assign) id delegate; - (void)animationWithTexts:(NSArray *)textAry; - (void)stopAnimation; -(void)startTextAnimation; @end