// // StockInfoCardView.h // HC // // Created by huilinLi on 2025/12/1. // #import NS_ASSUME_NONNULL_BEGIN @interface StockInfoCardView : UIView @property (nonatomic, strong, readonly) UILabel *mainPriceLabel; @property (nonatomic, strong, readonly) UILabel *changePriceLabel; @property (nonatomic, strong, readonly) UILabel *changePercentLabel; @property (nonatomic, strong, readonly) UILabel *highValueLabel; @property (nonatomic, strong, readonly) UILabel *openValueLabel; @property (nonatomic, strong, readonly) UILabel *volumeValueLabel; @property (nonatomic, strong, readonly) UILabel *lowValueLabel; @property (nonatomic, strong, readonly) UILabel *turnoverRateLabel; // 换 @property (nonatomic, strong, readonly) UILabel *amountLabel; // 额 (成交额) - (void)setupView; @end NS_ASSUME_NONNULL_END