12345678910111213141516171819202122232425262728293031 |
- //
- // RQCommonGroupViewModel.h
- // RQCommon
- //
- // Created by 张嵘 on 2018/11/27.
- // Copyright © 2018 张嵘. All rights reserved.
- // 组视图模型
- #import <Foundation/Foundation.h>
- #import "RQCommonGroupModel.h"
- @interface RQCommonGroupViewModel : NSObject
- /// 组头
- @property (nonatomic, copy) NSString *header;
- /// headerHeight defalult is .001
- @property (nonatomic, readwrite, assign) CGFloat headerHeight;
- @property (nonatomic, readwrite, strong) UIFont *headerFont;
- /// 组尾
- @property (nonatomic, copy) NSString *footer;
- /// footerHeight defalult is .001
- @property (nonatomic, readwrite, assign) CGFloat footerHeight;
- @property (nonatomic, readwrite, strong) UIFont *footerFont;
- /// 里面装着都是 MHCommonItemViewModel 以及其子类
- @property (nonatomic, readwrite, strong) NSArray *itemViewModels;
- @property (nonatomic, readonly, strong) RQCommonGroupModel *groupModel;
- + (instancetype)groupViewModel;
- - (void)setCustomStyleWithRQCommonGroupModel:(void(^)(RQCommonGroupModel *groupModel))handler;
- @end
|