refactor: merge to demo new usage

This commit is contained in:
2024-01-12 12:32:02 +08:00
parent c213f5d507
commit b35786c57f
15 changed files with 524 additions and 159 deletions

View File

@@ -308,7 +308,7 @@
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
DEVELOPMENT_ASSET_PATHS = "\"iosApp/Preview Content\"";
DEVELOPMENT_TEAM = SJ5C2V6386;
DEVELOPMENT_TEAM = WDF5V4WH3C;
ENABLE_PREVIEWS = YES;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)\n",
@@ -343,7 +343,7 @@
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
DEVELOPMENT_ASSET_PATHS = "\"iosApp/Preview Content\"";
DEVELOPMENT_TEAM = SJ5C2V6386;
DEVELOPMENT_TEAM = WDF5V4WH3C;
ENABLE_PREVIEWS = YES;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)\n",

View File

@@ -8,7 +8,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
window = UIWindow(frame: UIScreen.main.bounds)
window?.rootViewController = App_iosKt.createUIViewController()
window?.rootViewController = UIViewControllerKt.createUIViewController()
window?.makeKeyAndVisible()
return true
}