20 lines
482 B
Objective-C
20 lines
482 B
Objective-C
//
|
|
// QXNobilityDetailCell.h
|
|
// QXLive
|
|
//
|
|
// Created by 启星 on 2025/11/8.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "QXNobilityListModel.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface QXNobilityDetailCell : UICollectionViewCell
|
|
@property (weak, nonatomic) IBOutlet UIImageView *imageView;
|
|
@property (weak, nonatomic) IBOutlet UILabel *titleLabel;
|
|
@property (weak, nonatomic) IBOutlet UILabel *detailLabel;
|
|
@property (nonatomic,strong)QXNobilityPowerList *model;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|