From 4198b87b21af66231a913e5ca905d8d5121d995e Mon Sep 17 00:00:00 2001 From: sanghyeok-kim Date: Fri, 11 Aug 2023 14:56:24 +0900 Subject: [PATCH] =?UTF-8?q?#55=20feat:=20SceneDelegate=EC=97=90=EC=84=9C?= =?UTF-8?q?=20requestReviewInCurrentScene=20=EC=8B=A4=ED=96=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Multimer/Multimer/Application/SceneDelegate.swift | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Multimer/Multimer/Application/SceneDelegate.swift b/Multimer/Multimer/Application/SceneDelegate.swift index f5f2432..bb0d814 100644 --- a/Multimer/Multimer/Application/SceneDelegate.swift +++ b/Multimer/Multimer/Application/SceneDelegate.swift @@ -6,6 +6,7 @@ // import UIKit +import StoreKit class SceneDelegate: UIResponder, UIWindowSceneDelegate { @@ -24,6 +25,8 @@ class SceneDelegate: UIResponder, UIWindowSceneDelegate { window?.rootViewController = rootNavigationController window?.makeKeyAndVisible() + + SKStoreReviewController.requestReviewInCurrentScene() } }