| 1234567891011121314151617181920212223 |
- //
- // StockView.h
- // yunbaolive
- //
- // Created by ybRRR on 2020/3/19.
- // Copyright © 2020 cat. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface StockView : UIView
- @property (weak, nonatomic) IBOutlet UILabel *standardTitle;
- @property (weak, nonatomic) IBOutlet UILabel *nameLb;
- @property (weak, nonatomic) IBOutlet UITextField *countFeild;
- @property (weak, nonatomic) IBOutlet UITextField *priceFeild;
- @property (strong, nonatomic) IBOutlet UILabel *priceTitle;
- @property (strong, nonatomic) IBOutlet UILabel *countTitle;
- @end
- NS_ASSUME_NONNULL_END
|