// // FKLiveViewModel.h // FirstLink // // Created by Lofty on 16/10/13. // Copyright © 2016年 FirstLink. All rights reserved. // #import #import "FKLivesProductItem.h" typedef NS_ENUM(NSUInteger, kLiveCellType) { kLiveCellTypeNone = 0, kLiveCellTypeBrandHead, kLiveCellTypeProduct, kLiveCellTypeActivityHead, kLiveCellTypeActivityProduct }; @interface FKLiveViewModel : NSObject @property (nonatomic, strong) NSMutableArray *items; @property (nonatomic, strong) NSString *anchorID; - (void)addItems:(NSArray *)array; - (NSInteger)itemCount; - (FKLivesProductItem *)itemAtIndexPath:(NSIndexPath *)indexPath; - (BOOL)isEmpty; - (kLiveCellType)cellTypeAtIndexPath:(NSIndexPath *)indexPath; - (NSString *)cellIdentifiyAtIndexPath:(NSIndexPath *)indexPath; - (CGFloat)heightForRowAtIndexPath:(NSIndexPath *)indexPath; @end