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