BUGifImage.h 475 B

12345678910111213141516171819202122232425
  1. //
  2. // BUGifImage.h
  3. // BUGif
  4. //
  5. // Created by Johnil on 14-3-6.
  6. // Copyright (c) 2014年 Johnil. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface BUGifImage : UIImage
  10. @property (nonatomic,assign) NSInteger currentPlayIndex;
  11. @property (nonatomic,strong) NSData *data;
  12. + (instancetype)gifWithData:(NSData *)data;
  13. - (UIImage *)nextImage;
  14. - (NSInteger)count;
  15. - (CGFloat)frameDuration;
  16. - (void)resumeIndex;
  17. /// 是否还有下一桢
  18. - (BOOL) hasNextImage;
  19. @end