22 lines
339 B
Objective-C
22 lines
339 B
Objective-C
//
|
|
// YYXinrenTop3View.h
|
|
// SweetParty
|
|
//
|
|
// Created by MAC on 2024/3/7.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "YYXinrenTop3Model.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface YYXinrenTop3View : UIView
|
|
|
|
@property (weak, nonatomic) IBOutlet UITableView *tableView;
|
|
|
|
@property (nonatomic, strong) NSArray *dataArray;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|