StockView.h 592 B

1234567891011121314151617181920212223
  1. //
  2. // StockView.h
  3. // yunbaolive
  4. //
  5. // Created by ybRRR on 2020/3/19.
  6. // Copyright © 2020 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface StockView : UIView
  11. @property (weak, nonatomic) IBOutlet UILabel *standardTitle;
  12. @property (weak, nonatomic) IBOutlet UILabel *nameLb;
  13. @property (weak, nonatomic) IBOutlet UITextField *countFeild;
  14. @property (weak, nonatomic) IBOutlet UITextField *priceFeild;
  15. @property (strong, nonatomic) IBOutlet UILabel *priceTitle;
  16. @property (strong, nonatomic) IBOutlet UILabel *countTitle;
  17. @end
  18. NS_ASSUME_NONNULL_END