본문 바로가기
개발/iOS

iOS에서 인 앱 리뷰 요청

by 장모 2021. 2. 28.
if #available(iOS 14.0, *) {
    if let scene = UIApplication.shared.connectedScenes.first(where: { $0.activationState == .foregroundActive }) as? UIWindowScene {
        SKStoreReviewController.requestReview(in: scene)
    }
} else if #available(iOS 10.3, *){
    SKStoreReviewController.requestReview()
}

 

주의사항은 호출한다고 매번 프롬프트가 뜨는건 아니고 일년에 최대 3번 나온다고 한다.

 

이 주의사항이 마음에 안든다면 옛날 방법으로 앱스토어로 넘겨 알아서 리뷰를 남기도록 할 수 있다. 

let url = URL(string: "itms-apps://itunes.apple.com/app/idxxxxxxxxxxx")!
UIApplication.shared.open(url)

 

더 자세한 내용은

developer.apple.com/documentation/storekit/skstorereviewcontroller/requesting_app_store_reviews

 

Apple Developer Documentation

 

developer.apple.com

 

댓글