YOUPAILCGiftSendView.h 638 B

12345678910111213141516171819
  1. //
  2. // YOUPAILCGiftSendView.h
  3. // LiveChat
  4. //
  5. // Created by 张灿 on 2018/9/29.
  6. // Copyright © 2018年 caicai. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "YOUPAILCGiftModel.h"
  10. typedef void(^sendMultiGiftBlock)(NSString* giftId,NSInteger count);
  11. @interface YOUPAILCGiftSendView : UIView
  12. @property(nonatomic,copy)sendMultiGiftBlock youpaipsendMultiGift;
  13. @property(nonatomic,strong)UIWindow* youpaipalertWindow;
  14. @property(nonatomic,assign)NSInteger youpaiptype; //type1表示动态列表 type2需要传入礼物模型
  15. - (instancetype)initWithModel:(YOUPAILCGiftModel*)model type:(NSInteger)type;
  16. - (void)youpaifshow;
  17. @end