This app is not allowed to query for scheme itms-apps
프로그래밍/swift2020. 4. 11. 22:10
if let instaurl = URL(string: "itms-apps://itunes.apple.com/us/app/app-store/id1000000"),
UIApplication.shared.canOpenURL(instaurl) {
if #available(iOS 10.0, *) {
UIApplication.shared.open(instaurl)
} else {
UIApplication.shared.openURL(instaurl)
}
}
위 코드를 실행하면..
-canOpenURL: failed for URL: "itms-apps://itunes.apple.com/us/app/app-store/id1000000" - error: "This app is not allowed to query for scheme itms-apps"
위의 에러가 발생했습니다.
해결책은 간단합니다. Info.plist에 itms-apps을 추가하면 됩니다.
댓글 영역