GiftListManager.h 590 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // GiftListManager.h
  3. // BuguLive
  4. //
  5. // Created by xfg on 16/5/20.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface GiftListManager : NSObject
  10. // 单例模式
  11. BogoSingletonH(Instance);
  12. @property (nonatomic, assign) double expiry_after; //过期时间
  13. @property (nonatomic, strong) NSArray *giftMArray; //礼物列表
  14. @property(nonatomic, copy) void (^relodComplete)(void);
  15. /**
  16. 保存礼物列表
  17. @param dict 数据
  18. */
  19. - (void)saveGiftList:(NSDictionary *)dict;
  20. /**
  21. 重新加载礼物列表
  22. */
  23. - (void)reloadGiftList;
  24. @end