1234567891011121314151617 |
- //
- // KXKeyWordView.h
- // CAISHEN
- //
- // Created by kuxuan on 2017/12/5.
- // Copyright © 2017年 kuxuan. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- typedef void(^clickKeyword) (NSString *keyword);
- @interface KXKeyWordView : UIView
- @property (nonatomic,strong)NSArray *itemArray;
- @property (nonatomic,copy)clickKeyword keywordBlock;
- @end
|