// // KKToolBarItem.h // WWImageEdit // // Created by 邬维 on 2017/1/3. // Copyright © 2017年 kook. All rights reserved. // #import #import "KKImageToolInfo.h" /** 工具栏的menu item */ @interface KKToolBarItem : UIView @property (nonatomic, assign) BOOL selected; @property (nonatomic, strong) UIImageView *iconView; @property (nonatomic, strong) UILabel *titleLabel; @property (nonatomic, strong) KKImageToolInfo *imgToolInfo; - (instancetype)initWithFrame:(CGRect)frame target:(id)target action:(SEL)action toolInfo:(KKImageToolInfo*)toolInfo; @end