RAUploadListViewController.h 555 B

123456789101112131415161718
  1. //
  2. // RAUploadListViewController.h
  3. // Apex And Drivers
  4. //
  5. // Created by Jack on 2018/6/6.
  6. // Copyright © 2018年 USAI. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface RAUploadListViewController : UIViewController <UITableViewDelegate,UITableViewDataSource>
  10. @property (weak, nonatomic,readonly) UITableView *uploadTableView;
  11. @property (nonatomic,copy) UITableViewCell * (^dequeueCell)(UITableView *tableView,NSIndexPath *indexPath);
  12. @property (nonatomic,copy) void (^endDisplayCell)(UITableView *tableView,UITableViewCell *cell);
  13. @end