19 lines
271 B
Objective-C
19 lines
271 B
Objective-C
//
|
|
// CustomTUIHistoryTable.h
|
|
// XinjiangProject
|
|
//
|
|
// Created by Apple on 2024/6/14.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface CustomTUIHistoryTable : UITableView
|
|
|
|
@property (nonatomic, strong) NSArray * dataArray;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|