23 lines
687 B
Objective-C
23 lines
687 B
Objective-C
//
|
|
// DDMyRoomListViewController.h
|
|
// DingDangApp
|
|
//
|
|
// Created by apple on 2023/6/20.
|
|
//
|
|
|
|
#import "DDBasePagerHomeListViewController.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface DDMyRoomListViewController : DDBasePagerHomeListViewController<UITableViewDelegate,UITableViewDataSource>
|
|
@property (nonatomic, strong) UITableView * myTableView;
|
|
@property (nonatomic, strong) NSMutableArray * dataArr;
|
|
@property (nonatomic, assign) NSInteger pageNum;
|
|
@property (nonatomic, strong) UIButton * creatRoomBtn;
|
|
@property (nonatomic, assign) NSInteger oneself_num;
|
|
@property (nonatomic,assign) BOOL isClick;
|
|
@property (nonatomic, copy) NSString * type;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|