| 1234567891011121314151617181920212223242526272829 |
- //
- // ShakeLabel.h
- // BuguLive
- //
- // Created by xfg on 16/5/23.
- // Copyright © 2016年 xfg. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @protocol ShakeLabelDelegate <NSObject>
- @required
- - (void)shakeLabelAnimateFinished;
- @end
- @interface ShakeLabel : UILabel
- @property (nonatomic, weak) id<ShakeLabelDelegate>delegate;
- // 动画时间
- @property (nonatomic, assign) NSTimeInterval duration;
- // 描边颜色
- @property (nonatomic, strong) UIColor *borderColor;
- - (void)startAnimWithDuration:(NSTimeInterval)duration;
- @end
|