// // LMJItemSection.h // GoMeYWLC // // Created by NJHu on 2016/10/21. // Copyright © 2016年 NJHu. All rights reserved. // #import @class LMJWordItem; @interface LMJItemSection : NSObject /** <#digest#> */ @property (nonatomic, copy) NSString *headerTitle; /** <#digest#> */ @property (nonatomic, copy) NSString *footerTitle; /** <#digest#> */ @property (nonatomic, strong) NSMutableArray *items; + (instancetype)sectionWithItems:(NSArray *)items andHeaderTitle:(NSString *)headerTitle footerTitle:(NSString *)footerTitle; @end