@ -8,6 +8,8 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
func application ( _ application : UIApplication , didFinishLaunchingWithOptions launchOptions : [ UIApplication . LaunchOptionsKey : Any ] ? ) -> Bool {
func application ( _ application : UIApplication , didFinishLaunchingWithOptions launchOptions : [ UIApplication . LaunchOptionsKey : Any ] ? ) -> Bool {
do {
do {
// K e e p t h i s l o g b e c a u s e i t ' s r e a l l y u s e f u l f o r d e b u g g i n g t h i n g s w i t h o u t r e q u i r i n g a n e w T e s t F l i g h t / a p p s t o r e s u b m i s s i o n
NSLog ( " Application launched with launchOptions: \( String ( describing : launchOptions ) ) " )
appCoordinator = try AppCoordinator . create ( )
appCoordinator = try AppCoordinator . create ( )
appCoordinator . start ( launchOptions : launchOptions )
appCoordinator . start ( launchOptions : launchOptions )
} catch {
} catch {
@ -43,6 +45,8 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
// U R I s c h e m e l i n k s a n d A i r D r o p
// U R I s c h e m e l i n k s a n d A i r D r o p
func application ( _ app : UIApplication , open url : URL , options : [ UIApplication . OpenURLOptionsKey : Any ] = [ : ] ) -> Bool {
func application ( _ app : UIApplication , open url : URL , options : [ UIApplication . OpenURLOptionsKey : Any ] = [ : ] ) -> Bool {
// K e e p t h i s l o g b e c a u s e i t ' s r e a l l y u s e f u l f o r d e b u g g i n g t h i n g s w i t h o u t r e q u i r i n g a n e w T e s t F l i g h t / a p p s t o r e s u b m i s s i o n
NSLog ( " Application open url: \( url . absoluteString ) options: \( options ) " )
return appCoordinator . applicationOpenUrl ( url , options : options )
return appCoordinator . applicationOpenUrl ( url , options : options )
}
}