diff --git a/JSDecoupledAppDelegate/JSDecoupledAppDelegate.h b/JSDecoupledAppDelegate/JSDecoupledAppDelegate.h index 3896976..616f6d8 100644 --- a/JSDecoupledAppDelegate/JSDecoupledAppDelegate.h +++ b/JSDecoupledAppDelegate/JSDecoupledAppDelegate.h @@ -35,7 +35,7 @@ @property (strong, nonatomic) id remoteNotificationsDelegate; @property (strong, nonatomic) id localNotificationsDelegate; @property (strong, nonatomic) id stateRestorationDelegate; -@property (strong, nonatomic) id URLResouceOpeningDelegate; +@property (strong, nonatomic) id URLResourceOpeningDelegate; @property (strong, nonatomic) id protectedDataDelegate; @end diff --git a/JSDecoupledAppDelegate/JSDecoupledAppDelegate.m b/JSDecoupledAppDelegate/JSDecoupledAppDelegate.m index 5400295..107c050 100644 --- a/JSDecoupledAppDelegate/JSDecoupledAppDelegate.m +++ b/JSDecoupledAppDelegate/JSDecoupledAppDelegate.m @@ -48,7 +48,7 @@ NSStringFromSelector(@selector(remoteNotificationsDelegate)), NSStringFromSelector(@selector(localNotificationsDelegate)), NSStringFromSelector(@selector(stateRestorationDelegate)), - NSStringFromSelector(@selector(URLResouceOpeningDelegate)), + NSStringFromSelector(@selector(URLResourceOpeningDelegate)), NSStringFromSelector(@selector(protectedDataDelegate)), ]; }); @@ -270,7 +270,7 @@ - (void)application:(UIApplication *)application didDecodeRestorableStateWithCod - (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation { - return [self.URLResouceOpeningDelegate application:application openURL:url sourceApplication:sourceApplication annotation:annotation]; + return [self.URLResourceOpeningDelegate application:application openURL:url sourceApplication:sourceApplication annotation:annotation]; } #pragma mark - JSApplicationProtectedDataDelegate