KKToolBarItem.h 586 B

123456789101112131415161718192021222324
  1. //
  2. // KKToolBarItem.h
  3. // WWImageEdit
  4. //
  5. // Created by 邬维 on 2017/1/3.
  6. // Copyright © 2017年 kook. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "KKImageToolInfo.h"
  10. /**
  11. 工具栏的menu item
  12. */
  13. @interface KKToolBarItem : UIView
  14. @property (nonatomic, assign) BOOL selected;
  15. @property (nonatomic, strong) UIImageView *iconView;
  16. @property (nonatomic, strong) UILabel *titleLabel;
  17. @property (nonatomic, strong) KKImageToolInfo *imgToolInfo;
  18. - (instancetype)initWithFrame:(CGRect)frame target:(id)target action:(SEL)action toolInfo:(KKImageToolInfo*)toolInfo;
  19. @end