Notice
Recent Posts
Recent Comments
Link
Tags
- CollectionView
- lineBreakStrategy
- iTerm
- 애플사이다
- 디자인패턴
- Accessibility
- iPad
- IOS
- Split View
- 스위프트
- Swift
- Keychain
- GOF
- orthogonalScrollingBehavior
- LanguageGuide
- github
- 야곰아카데미
- TOSS
- lineBreakMode
- Human Interface Guidelines
- 전달인자 레이블
- 애플
- DiffableDataSource
- HIG
- WWDC
- UIKit
- Combine+UIKit
- UILabel
- 앱개발
- Apple
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- Today
- Total
애플사이다의 iOS 개발 일지
[Redirect] 업데이트 버튼 탭하면 사용자에게 AppStore 앱 띄우기 (간단) 본문
대부분 앱의 설정 화면에서 현재 설치된 버전 정보를 알 수 있다.
그리고 해당 앱의 최신버전이 나왔다면 업데이트 버튼을 탭했을 때, 사용자에게 AppStore 화면을 띄워준다.
덕분에 사용자가 AppStore에서 해당 앱을 직접 검색할 필요가 없다.
구글링을 통해 간단히 방법을 찾을 수 있었다.
검색 키워드 - ios how to link appstore
Stack overflow > How to link to apps on the app store에서 시킨대로 했더니 잘 된다.
@objc private func updateButtonTapped() {
let appID = "1234"
let appStoreURL = "itms-apps://itunes.apple.com/app/id\(appID)"
guard let appStoreURL = URL(string: appStoreURL),
UIApplication.shared.canOpenURL(appStoreURL) else { return }
UIApplication.shared.open(appStoreURL)
}
- Reference
- Stack overflow > How to link to apps on the app store
🍎 포스트가 도움이 되었다면, 공감🤍 / 구독🍹 / 공유🔗 / 댓글✏️ 로 응원해주세요. 감사합니다.
'iOS' 카테고리의 다른 글
[PTR] RefreshControl 및 ImageView에 Gif 이미지 넣기 (0) | 2022.12.10 |
---|---|
[Redirect] 설정 앱을 띄워서 특정 앱의 설정 변경하기 (간단) (0) | 2022.11.14 |
[인디 앱개발] ✨ 앱 기획부터 출시까지 참고한 링크 - 앱 기획, 디자인, 개발, 배포 준비 (2) | 2022.07.20 |
[CollectionView] 배너 하단에 PageControl 구현 - FooterView에 넣기 (0) | 2022.06.15 |
[CollectionView] estimatedHeight 사용 시 is stuck in its update/layout loop 에러 발생 (0) | 2022.06.13 |
Comments