// // FLExploreKeywordViewModel.h // FirstLink // // Created by jack on 15/8/21. // Copyright (c) 2015年 FirstLink. All rights reserved. // #import #import "FKExploreKeyword.h" @class FKExploreConditionItem; @interface FLExploreKeywordViewModel : NSObject @property (nonatomic, strong) NSArray *keywordArray; @property (nonatomic, strong) NSArray *hotKeywordArray; - (BOOL)insertKeywordToDB:(NSString *)keyword createTime:(NSString *)createTime; - (NSArray *)queryKeywordsFromDB; - (BOOL)deleteAllKeywordsInDB; - (NSString *)keywordTextAtIndex:(NSInteger)index; - (NSString *)hotKeywordTextAtIndex:(NSInteger)index; - (NSString *)sectionTitleAtSection:(NSInteger)section; - (NSString *)titleAtIndexPath:(NSIndexPath *)indexPath; - (NSInteger)insertIntoBrandTable:(NSArray *)brands; - (NSArray *)queryBrandsStartWith:(NSString *)prefix; @end