CustomPlaceView.h 542 B

1234567891011121314151617181920212223
  1. //
  2. // CustomPlaceView.h
  3. // Haishenghai-master
  4. //
  5. // Created by GG on 2019/1/4.
  6. // Copyright © 2019年 Haishenghai intelligence network technology. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. //封装模型类
  10. @class PlaceViewModel;
  11. @interface CustomPlaceView : UIView
  12. //提供一个`模型`属性,重写模型属性的set方法
  13. @property (nonatomic,strong)PlaceViewModel *model;
  14. //用`weak`声明,防止内存泄露)
  15. @property (nonatomic, weak) UILabel *nameLabel;
  16. @property (nonatomic, weak) UITextField *textfield;
  17. @end