GiGaMaskTime/GIGA/Modules/Me/View/userInfoView/GiGaUserJobViewCell.h

28 lines
692 B
Objective-C

//
// GiGaUserJobViewCell.h
// GIGA
//
// Created by lianxiang on 2018/9/17.
// Copyright © 2018年 com.giga.ios. All rights reserved.
//
#import <UIKit/UIKit.h>
//展开关闭按钮
typedef void (^jobBtnAction)(void);
//选中
typedef void (^jobSelectAction)(NSString *title);
@interface GiGaUserJobViewCell : UITableViewCell
@property (nonatomic,strong) UIButton *upDownBtn;
@property (nonatomic,strong) NSArray *jobs;
-(void)userSelectjobAction:(jobBtnAction)block;
@property (nonatomic,copy) jobBtnAction actionblock;
-(void)userSelectjob:(jobSelectAction)block;
@property (nonatomic,copy) jobSelectAction jobblock;
-(void)setButtnImage:(BOOL)isUp with:(NSArray *)titles;
@end