SeMobGIFImageView.h 308 B

123456789101112131415
  1. //
  2. // SeMobGIFImageView.h
  3. // SeMob
  4. //
  5. // Created by yangbin on 2017/8/10.
  6. //
  7. #import <UIKit/UIKit.h>
  8. @interface SeMobGIFImageView : UIImageView
  9. @property (nonatomic, strong) NSData *gifData;
  10. + (SeMobGIFImageView *)imageViewWithGIFData:(NSData *)data;
  11. - (void)startAnimating;
  12. - (void)stopAnimating;
  13. @end