22 lines
586 B
Objective-C
22 lines
586 B
Objective-C
//
|
|
// GiGaUserSexViewCell.h
|
|
// GIGA
|
|
//
|
|
// Created by lianxiang on 2018/9/14.
|
|
// Copyright © 2018年 com.giga.ios. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
typedef void (^femaleBtnAction)(int sex);
|
|
|
|
@interface GiGaUserSexViewCell : UITableViewCell
|
|
@property (weak, nonatomic) IBOutlet UIButton *usefemale;
|
|
@property (weak, nonatomic) IBOutlet UIButton *usermale;
|
|
-(void)loadCellData:(NSIndexPath*)indexPath user:(GiGaUser*)user;
|
|
-(void)userSelectSexAction:(femaleBtnAction)block;
|
|
@property (nonatomic,copy) femaleBtnAction actionblock;
|
|
-(void)configUserSex:(int)sex;
|
|
|
|
@end
|