공유 버튼을 눌렀을 때 아래와 같이 설치가 되어 있지 않으면 설치 하는 곳으로 띄우려는데 앱스토어가 열리지 않습니다.
혹시 시뮬레이터라서 그럴까요?
if !ShareApi.isKakaoTalkSharingAvailable() {
self.showToast(message: “먼저 카카오톡을 설치 해 주십시오.”)
let alert = UIAlertController(title: "카카오톡 설치", message: "카카오톡이 설치되어 있지 않습니다. 지금 설치하시겠습니까?", preferredStyle: .alert)
alert.addAction(UIAlertAction(title: "취소", style: .cancel, handler: nil))
alert.addAction(UIAlertAction(title: "확인", style: .default, handler: { _ in
if let url = URL(string: "itms-apps://itunes.apple.com/app/id362057947") {
if UIApplication.shared.canOpenURL(url) {
UIApplication.shared.open(url, options: [:], completionHandler: nil)
}
}
}))
self.present(alert, animated: true, completion: nil)
return
}