17 lines
416 B
Objective-C
17 lines
416 B
Objective-C
//
|
|
// GIGaUserWeChatViewCell.h
|
|
// GIGA
|
|
//
|
|
// Created by lianxiang on 2018/9/14.
|
|
// Copyright © 2018年 com.giga.ios. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface GIGaUserWeChatViewCell : UITableViewCell
|
|
@property (weak, nonatomic) IBOutlet UILabel *descTitle;
|
|
@property (weak, nonatomic) IBOutlet UITextField *weiXinCount;
|
|
|
|
-(void)loadCellData:(NSIndexPath*)indexPath user:(GiGaUser*)user;
|
|
@end
|