Tunko Development Diary

[iOS][swift] 앱스토어로 보내기 본문

Development/iOS 개발

[iOS][swift] 앱스토어로 보내기

Tunko 2020. 1. 2. 15:47

swift 앱스토어로 보내기

#swift

@id 에는 앱 Apple ID 값을 넣어준다.

앱정보에서 확인 가능하다.

if let url = URL(string: "itms-apps://itunes.apple.com/app/[@id]"),
                    UIApplication.shared.canOpenURL(url)
{
    if #available(iOS 10.0, *) {
        UIApplication.shared.open(url, options: [:], completionHandler: nil)
    } else {
        UIApplication.shared.openURL(url)
    }
}
반응형
Comments