20 lines
459 B
Objective-C
20 lines
459 B
Objective-C
//
|
|
// KanHuGuanLi1ViewCell.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 17/2/16.
|
|
// Copyright © 2017年 lianlian. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "KanHuListModel.h"
|
|
|
|
@interface KanHuGuanLi1ViewCell : UITableViewCell
|
|
@property (weak, nonatomic) IBOutlet UIImageView *UserImg;
|
|
@property (weak, nonatomic) IBOutlet UILabel *userName;
|
|
@property (weak, nonatomic) IBOutlet UIButton *chatBtn;
|
|
|
|
-(void)loadListData:(KanHuListModel*)model;
|
|
|
|
@end
|