Jelajahi Sumber

Extract AppDelegate into own file

Sergey 2 tahun lalu
induk
melakukan
c449a855a6
3 mengubah file dengan 23 tambahan dan 10 penghapusan
  1. 4 0
      Chat.xcodeproj/project.pbxproj
  2. 19 0
      Chat/Main/AppDelegate.swift
  3. 0 10
      Chat/Main/ChatApp.swift

+ 4 - 0
Chat.xcodeproj/project.pbxproj

@@ -7,6 +7,7 @@
 	objects = {
 
 /* Begin PBXBuildFile section */
+		2F24E94828F2FC8A007ECE97 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2F24E94728F2FC8A007ECE97 /* AppDelegate.swift */; };
 		2F60458A288D787F008F005E /* ChatApp.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2F60457A288D787E008F005E /* ChatApp.swift */; };
 		2F60458C288D787F008F005E /* ContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2F60457B288D787E008F005E /* ContentView.swift */; };
 		2F60458E288D787F008F005E /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 2F60457C288D787F008F005E /* Assets.xcassets */; };
@@ -32,6 +33,7 @@
 
 /* Begin PBXFileReference section */
 		2F24E94228F2F9C6007ECE97 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
+		2F24E94728F2FC8A007ECE97 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
 		2F60457A288D787E008F005E /* ChatApp.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ChatApp.swift; sourceTree = "<group>"; };
 		2F60457B288D787E008F005E /* ContentView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContentView.swift; sourceTree = "<group>"; };
 		2F60457C288D787F008F005E /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
@@ -72,6 +74,7 @@
 			isa = PBXGroup;
 			children = (
 				2F60457A288D787E008F005E /* ChatApp.swift */,
+				2F24E94728F2FC8A007ECE97 /* AppDelegate.swift */,
 				2F60457C288D787F008F005E /* Assets.xcassets */,
 				2F24E94228F2F9C6007ECE97 /* Info.plist */,
 			);
@@ -262,6 +265,7 @@
 			files = (
 				2FCB75ED28A42B1E0097BD1D /* ChatViewModel.swift in Sources */,
 				2F81974328ACDBC4008D8C45 /* RoomManager.swift in Sources */,
+				2F24E94828F2FC8A007ECE97 /* AppDelegate.swift in Sources */,
 				2F81974C28ACFDEA008D8C45 /* Room.swift in Sources */,
 				2F60459C288D8000008F005E /* MessageView.swift in Sources */,
 				2F81974128ACD9A6008D8C45 /* StreamManager.swift in Sources */,

+ 19 - 0
Chat/Main/AppDelegate.swift

@@ -0,0 +1,19 @@
+//
+//  AppDelegate.swift
+//  Chat (iOS)
+//
+//  Created by Sergey Tarasov on 09.10.2022.
+//
+
+import UIKit
+import XMPPFramework
+
+class AppDelegate: UIResponder, UIApplicationDelegate {
+	func application(
+		_ application: UIApplication,
+		didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey : Any]? = nil
+	) -> Bool {
+		DDLog.add(DDOSLogger.sharedInstance, with: DDLogLevel.all)
+		return true
+	}
+}

+ 0 - 10
Chat/Main/ChatApp.swift

@@ -20,16 +20,6 @@ struct ChatApp: App {
     }
 }
 
-class AppDelegate: NSObject, UIApplicationDelegate {
-    func application(
-        _ application: UIApplication,
-        didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey : Any]? = nil
-    ) -> Bool {
-        DDLog.add(DDOSLogger.sharedInstance, with: DDLogLevel.all)
-        return true
-    }
-}
-
 extension UIApplication {
     func addTapGestureRecognizer() {
         let scenes = UIApplication.shared.connectedScenes