You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
842 B

1 month ago
  1. //
  2. // StockInfoCardView.h
  3. // HC
  4. //
  5. // Created by huilinLi on 2025/12/1.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface StockInfoCardView : UIView
  10. @property (nonatomic, strong, readonly) UILabel *mainPriceLabel;
  11. @property (nonatomic, strong, readonly) UILabel *changePriceLabel;
  12. @property (nonatomic, strong, readonly) UILabel *changePercentLabel;
  13. @property (nonatomic, strong, readonly) UILabel *highValueLabel;
  14. @property (nonatomic, strong, readonly) UILabel *openValueLabel;
  15. @property (nonatomic, strong, readonly) UILabel *volumeValueLabel;
  16. @property (nonatomic, strong, readonly) UILabel *lowValueLabel;
  17. @property (nonatomic, strong, readonly) UILabel *turnoverRateLabel; // 换
  18. @property (nonatomic, strong, readonly) UILabel *amountLabel; // 额 (成交额)
  19. - (void)setupView;
  20. @end
  21. NS_ASSUME_NONNULL_END