IVTMyCenterTableViewHead.h 645 Bytes
//
//  IVTMyCenterTableViewHead.h
//  IVTMeLiveTwo
//
//  Created by XRG on 16/8/19.
//  Copyright © 2016年 QLQ. All rights reserved.
//

#import <UIKit/UIKit.h>

@protocol IVTMyCenterTableViewHeadDelegate <NSObject>
//设置
- (void)settingClick;
//消息
- (void)messageClick;
//我的账号
- (void)myAccountClick;
//关注
- (void)followListClick;
//粉丝
- (void)fanListClick;
//蜜糖
//- (void)mitangClick;
//进入直播
- (void)enterMyLiveClick;

@end

@interface IVTMyCenterTableViewHead : UIView

@property (nonatomic, copy) NSDictionary *dictData;

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


@end