IVTMeRedPacketView.h
921 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
//
// 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