IVTMeRedPacketView.h 921 Bytes
//
//  IVTMeRedPacketView.h
//  IVTMeLive
//
//  Created by XRG on 16/4/28.
//  Copyright © 2016年 Joky. All rights reserved.
//

#import <UIKit/UIKit.h>

@class IVTMeRedPacketView;
@protocol IVTMeRedPacketDelegate <NSObject>

-(void)changeGrabView:(NSDictionary *)dict;

-(void)closeRedPacketView;
@end

@interface IVTMeRedPacketView : UIView

@property (nonatomic,  weak) id <IVTMeRedPacketDelegate>delegate;

@property (nonatomic, strong)UIView *shadowView;

@property (nonatomic, strong) NSNumber * redPacketID;

@property (nonatomic, strong)UIImageView *top;

@property (nonatomic, strong)UIImageView *middle;

@property (nonatomic, strong)UIImageView *headIcon;

@property (nonatomic, strong)UILabel *tips;

@property (nonatomic,copy) NSString *levelString;

@property (nonatomic,copy) NSString *sexString;

@property (nonatomic,copy) NSString *nameString;

@property (nonatomic, strong) UIButton *grabBtn;

@end