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