AppDelegate.h 461 B

1234567891011121314
  1. #import <React/RCTBridgeDelegate.h>
  2. //#import <JPUSHService.h>
  3. #import <Expo/Expo.h>
  4. #import <UIKit/UIKit.h>
  5. #import "NativeBridge.h"
  6. @interface AppDelegate : EXAppDelegateWrapper <UIApplicationDelegate, RCTBridgeDelegate,UNUserNotificationCenterDelegate>
  7. @property (nonatomic, strong) UIWindow *window;
  8. @property (nonatomic, strong) NativeBridge *nativeBridge;
  9. @property (nonatomic, strong) NSTimer *timer;
  10. @property (nonatomic, assign) BOOL rnLoaded;
  11. @end