| 123456789101112131415161718 |
- //
- // RAUploadListViewController.h
- // Apex And Drivers
- //
- // Created by Jack on 2018/6/6.
- // Copyright © 2018年 USAI. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface RAUploadListViewController : UIViewController <UITableViewDelegate,UITableViewDataSource>
- @property (weak, nonatomic,readonly) UITableView *uploadTableView;
- @property (nonatomic,copy) UITableViewCell * (^dequeueCell)(UITableView *tableView,NSIndexPath *indexPath);
- @property (nonatomic,copy) void (^endDisplayCell)(UITableView *tableView,UITableViewCell *cell);
- @end
|