27 lines
443 B
Objective-C
27 lines
443 B
Objective-C
//
|
|
// XPMonentsRecommendViewController.m
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2022/5/11.
|
|
//
|
|
|
|
#import "XPMonentsRecommendViewController.h"
|
|
|
|
@interface XPMonentsRecommendViewController ()
|
|
|
|
///列表
|
|
@property (nonatomic,strong) UITableView *tableView;
|
|
///数据源
|
|
@property (nonatomic,strong) NSMutableArray *datasource;
|
|
@end
|
|
|
|
@implementation XPMonentsRecommendViewController
|
|
|
|
- (void)viewDidLoad {
|
|
[super viewDidLoad];
|
|
|
|
}
|
|
|
|
|
|
@end
|