| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- //
- // ImageAttachmentCell.h
- // IBOSS
- //
- // Created by 关宏厚 on 2020/7/27.
- // Copyright © 2020 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "CustomerInfoDetailModel.h"
- #import"DKTextAlignmentFillLabel.h"
- @interface ImageAttachmentCell : UITableViewCell<UICollectionViewDelegate, UICollectionViewDataSource>
- /**
- 是否展开
- */
- @property (nonatomic, copy, setter = setIsOpen:) NSString *isOpen;
- /**
- 代理
- */
- @property (nonatomic,weak) id delegate;
- /**
- 代理事件
- */
- @property SEL refreshTableView;
- /**
- 收缩展开
- */
- @property (nonatomic,strong) UIButton *btnArrow;
- /**
- 未显示控件的父控件
- */
- @property (nonatomic,strong) UIView *subView;
- /**
- <#Description#>
- */
- @property (strong,nonatomic) NSMutableArray *imageArr;
- /**
- <#Description#>
- */
- @property (strong,nonatomic) UILabel *imgInfoTitle;
- /**
- <#Description#>
- */
- @property (strong,nonatomic)CustomerInfoDetailModel *infoDetailModel;
- /**
- 设置图片
- @param infoDetail <#infoDetail description#>
- */
- - (void)setImageInfo:(CustomerInfoDetailModel *)infoDetail ;
- @end
|