ShakeLabel2.h 541 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // ShakeLabel2.h
  3. // BuguLive
  4. //
  5. // Created by xfg on 16/5/23.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol ShakeLabelDelegate2 <NSObject>
  10. @required
  11. - (void)shakeLabelAnimateFinished2;
  12. @end
  13. @interface ShakeLabel2 : UILabel
  14. @property (nonatomic, weak) id<ShakeLabelDelegate2>delegate;
  15. // 动画时间
  16. @property (nonatomic, assign) NSTimeInterval duration;
  17. // 描边颜色
  18. @property (nonatomic, strong) UIColor *borderColor;
  19. - (void)startAnimWithDuration:(NSTimeInterval)duration;
  20. @end