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