| 1234567891011121314151617 |
- //
- // MineItemView.h
- // 千模
- //
- // Created by Drew on 2018/10/24.
- // Copyright © 2018年 MUMEI. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- IB_DESIGNABLE
- @interface MineItemView : UIView
- @property (nonatomic, assign)IBInspectable NSString *icon;
- @property (nonatomic, strong)IBInspectable NSString *label;
- @property (nonatomic, strong)IBInspectable UIImage *image;
- @property (nonatomic, strong)IBInspectable UIGestureRecognizer *tgr;
- @end
|