StockView.m 329 B

12345678910111213141516171819
  1. //
  2. // StockView.m
  3. // yunbaolive
  4. //
  5. // Created by ybRRR on 2020/3/19.
  6. // Copyright © 2020 cat. All rights reserved.
  7. //
  8. #import "StockView.h"
  9. @implementation StockView
  10. -(void)awakeFromNib
  11. {
  12. [super awakeFromNib];
  13. self.priceTitle.text = YZMsg(@"单价(元)");
  14. self.countTitle.text = YZMsg(@"库存(件)");
  15. }
  16. @end