Notice
Recent Posts
Recent Comments
Link
투케이2K
76. (ios/swift) url scheme 스키마 외부 앱 실행 및 앱 스토어 이동 실시 - canOpenURL always true and false 해결 본문
IOS
76. (ios/swift) url scheme 스키마 외부 앱 실행 및 앱 스토어 이동 실시 - canOpenURL always true and false 해결
투케이2K 2021. 12. 12. 18:19[개발 환경 설정]
개발 툴 : XCODE
개발 언어 : SWIFT
[소스 코드]
// MARK: [외부 앱 실행 실시]
// [SEARCH FAST] : [외부 이동]
/*
1. https://www.apple.com/kr/ 사이트에 접속해서 특정 앱 주소를 확인합니다
2. 크롬 앱 id 확인 : https://apps.apple.com/kr/app/google-chrome/id535886823 [id535886823 부분을 사용해서 외부앱을 실행합니다]
3. 크롬 스키마 확인 : googlechrome://
4. 로직 : 외부앱 설치되었을 경우 >> 외부앱 실행 (스키마) / 외부앱이 설치되지 않은 경우 앱 스토어 이동 (앱 id)
5. 호출 예시 : goAppRun(_scheme: "googlechrome://", _id: "id535886823")
*/
func goAppRun(_scheme : String, _id : String) {
// [메인 큐에서 비동기 방식 실행 : UI 동작 실시]
DispatchQueue.main.async {
let _appSchme = _scheme
let _storeUrl = "itms-apps://itunes.apple.com/app/" + _id
print("")
print("====================================")
print("[S_Extension >> goAppRun :: 외부 앱 실행 실시]")
print("_appSchme :: ", _appSchme)
print("_storeUrl :: ", _storeUrl)
print("====================================")
print("")
// [URL 타입 체크 실시]
guard let appsUrl = URL(string: _appSchme)
else {
print("")
print("====================================")
print("[S_Extension >> goAppRun :: 외부 앱 실행 실시]")
print("error :: ", "URL 파싱 에러")
print("====================================")
print("")
return
}
// [외부 앱 실행 실시]
UIApplication.shared.open(appsUrl, completionHandler: { (success) in
if (success) {
print("")
print("====================================")
print("[S_Extension >> goAppRun :: 외부 앱 열기 수행]")
print("_appSchme :: ", _appSchme)
print("_storeUrl :: ", _storeUrl)
print("====================================")
print("")
}
else {
// 외부앱 이동 로직 처리 실시
if let openStore = URL(string: _storeUrl), UIApplication.shared.canOpenURL(openStore) {
print("")
print("====================================")
print("[S_Extension >> goAppRun :: 앱 스토어 이동 실시]")
print("_appSchme :: ", _appSchme)
print("_storeUrl :: ", _storeUrl)
print("====================================")
print("")
// 버전별 처리 실시
if #available(iOS 10.0, *) {
UIApplication.shared.open(openStore, options: [:], completionHandler: nil)
}
else {
UIApplication.shared.openURL(openStore)
}
}
}
})
}
}
[결과 출력]
반응형
'IOS' 카테고리의 다른 글
Comments