반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- graphql
- @Binding
- IOS
- subject
- vim
- @State
- NullObject
- dismiss
- swift6
- init
- RFC1738/1808
- @EnvironmentObject
- init?
- RxSwift
- Operators
- SWIFT
- NavigationLink
- nonisolated
- RxCocoa
- nestjs
- typeorm
- ios14
- Xcode
- operator
- @Environment
- SwiftUI
- Creating Operators
- URL(string:)
- Bug
- Operater
Archives
- Today
- Total
Tunko Development Diary
[iOS][swift] 앱스토어로 보내기 본문
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)
}
}
반응형
'Development > iOS 개발' 카테고리의 다른 글
ContainerView 에서 부모 클래스 접근방법 (0) | 2020.01.03 |
---|---|
[iOS][swift]App version정보 가져오기 (0) | 2020.01.02 |
[iOS][swift] UITableView 화면에 보이는 Cell 새로고침 (0) | 2020.01.02 |
UISearchBar 테두리 없애는 방법 (0) | 2020.01.02 |
[iOS][swift] PageviewController 사용하기 (0) | 2020.01.02 |
Comments