IVTMeUnGrabView.h
668 Bytes
//
// IVTMeUnGrabView.h
// IVTMeLive
//
// Created by XRG on 16/4/28.
// Copyright © 2016年 Joky. All rights reserved.
//
#import <UIKit/UIKit.h>
@class IVTMeUnGrabView;
@protocol IVTMeUnGrabViewDelegate <NSObject>
-(void)showPacketList;
-(void)closeClick;
@end
@interface IVTMeUnGrabView : UIView
@property(nonatomic,weak)id<IVTMeUnGrabViewDelegate>delegate;
@property (nonatomic, strong)UIImageView *headIcon;
//@property (nonatomic, strong)UILabel *nick;
@property (nonatomic, strong)UILabel *tips;
@property (nonatomic,copy) NSString *levelString;
@property (nonatomic,copy) NSString *sexString;
@property (nonatomic,copy) NSString *nameString;
@end