12345678910111213141516171819202122232425262728293031323334353637 |
- //
- // FKLiveViewModel.h
- // FirstLink
- //
- // Created by Lofty on 16/10/13.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #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
|