AppDelegate.h 364 B

12345678910111213141516171819
  1. //
  2. // AppDelegate.h
  3. // Apex And Drivers
  4. //
  5. // Created by Ray on 2018/5/26.
  6. // Copyright © 2018 USAI. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "RAUploadManager.h"
  10. @interface AppDelegate : UIResponder <UIApplicationDelegate>
  11. @property (strong, nonatomic) UIWindow *window;
  12. @property (strong, nonatomic) RAUploadManager *uploadManager;
  13. @end