// // FKExploreKeywordController.h // FirstLink // // Created by ascii on 16/3/11. // Copyright © 2016年 FirstLink. All rights reserved. // #import "FLViewController.h" #import "FKExploreConditionItem.h" typedef NS_ENUM(NSInteger, FKExploreControllerType) { FKExploreControllerTypeLocalKeyword = 0, FKExploreControllerTypeLocalBrand, FKExploreControllerTypeRemoteKeyword }; typedef void (^FKExecuteSearchHandler)(FKExploreConditionType type, NSString *itemID, NSString *value); @interface FKExploreKeywordController : UIViewController @property (nonatomic, copy) FKExecuteSearchHandler executeSearchHandler; - (instancetype)initWithKeyword:(NSString *)keyword type:(FKExploreControllerType)controllerType; - (NSInteger)updateLocalBrands:(NSArray *)brands; @end