Nav apraksta

KXKeyWordView.h 347B

1234567891011121314151617
  1. //
  2. // KXKeyWordView.h
  3. // CAISHEN
  4. //
  5. // Created by kuxuan on 2017/12/5.
  6. // Copyright © 2017年 kuxuan. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. typedef void(^clickKeyword) (NSString *keyword);
  10. @interface KXKeyWordView : UIView
  11. @property (nonatomic,strong)NSArray *itemArray;
  12. @property (nonatomic,copy)clickKeyword keywordBlock;
  13. @end