123456789101112131415161718192021222324252627282930313233 |
- //
- // FLExploreKeywordViewModel.h
- // FirstLink
- //
- // Created by jack on 15/8/21.
- // Copyright (c) 2015年 FirstLink. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #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<NSString*> *)brands;
- - (NSArray<FKExploreConditionItem*> *)queryBrandsStartWith:(NSString *)prefix;
- @end
|