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
29 lines
842 B
//
|
|
// StockInfoCardView.h
|
|
// HC
|
|
//
|
|
// Created by huilinLi on 2025/12/1.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
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
|