expensiveGiftV.h 746 B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // expensiveGiftV.h
  3. // yunbaolive
  4. //
  5. // Created by 王敏欣 on 2017/1/9.
  6. // Copyright © 2017年 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "exoensiveGifGiftV.h"
  10. #import <SVGAPlayer/SVGA.h>
  11. @protocol haohuadelegate <NSObject>
  12. -(void)expensiveGiftdelegate:(NSDictionary *)giftData;
  13. @end
  14. @interface expensiveGiftV : UIView
  15. {
  16. NSTimer *expensiveGiftTime;//豪华礼物定时器
  17. exoensiveGifGiftV *gifView;
  18. SVGAPlayer *player;
  19. }
  20. @property(nonatomic,weak)id<haohuadelegate>delegate;
  21. @property(nonatomic,strong)NSMutableArray *expensiveGiftCount;
  22. @property(nonatomic,assign)int haohuaCount;
  23. -(void)sethaohuacount;
  24. -(void)addArrayCount:(NSDictionary *)dic;
  25. -(void)enGiftEspensive;
  26. -(void)stopHaoHUaLiwu;
  27. @end