1234567891011121314151617181920212223242526272829303132333435 |
- //
- // SendInfoGroupCell.h
- // smartRhino
- //
- // Created by tederen on 2019/11/4.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import "TDTableViewCell.h"
- @class DepartmentModel;
- NS_ASSUME_NONNULL_BEGIN
- @class SendInfoGroupModel;
- //@protocol SendInfoGroupCellDelegate <NSObject>
- //@optional
- //- (void)selectCellback:(DepartmentModel *)model withIndexRow:(NSIndexPath *)index;
- //- (void)noSelectCellback:(DepartmentModel *)model withIndexRow:(NSIndexPath *)index;
- //
- //- (void)selectCellbackDepartUserModel:(SelectModel *)model withIndexRow:(NSIndexPath *)index;
- //- (void)noSelectCellbackDepartUserModel:(SelectModel *)model withIndexRow:(NSIndexPath *)index;
- //@end
- /// 带图片的
- @interface SendInfoGroupCell : TDTableViewCell
- @property (weak, nonatomic) IBOutlet TDButton *selectbuton;
- @property (weak, nonatomic) IBOutlet UIImageView *iconImageView;
- @property (weak, nonatomic) IBOutlet UILabel *nameLab;
- @property (weak, nonatomic) IBOutlet UIImageView *rightImgeView;
- - (void)loadDataModel:(DepartmentModel *)model indexWith:(NSIndexPath *)index;
- - (void)loadDataDepartUserModel:(SelectModel *)model indexWith:(NSIndexPath *)index;
- @end
- NS_ASSUME_NONNULL_END
|