MineItemView.h 452 B

1234567891011121314151617
  1. //
  2. // MineItemView.h
  3. // 千模
  4. //
  5. // Created by Drew on 2018/10/24.
  6. // Copyright © 2018年 MUMEI. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. IB_DESIGNABLE
  10. @interface MineItemView : UIView
  11. @property (nonatomic, assign)IBInspectable NSString *icon;
  12. @property (nonatomic, strong)IBInspectable NSString *label;
  13. @property (nonatomic, strong)IBInspectable UIImage *image;
  14. @property (nonatomic, strong)IBInspectable UIGestureRecognizer *tgr;
  15. @end