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
- swiftUI
- 리팩토링
- ios
- Refactoring
- UICollectionView
- Xcode
- Human interface guide
- 스위프트
- UITextView
- RxCocoa
- map
- SWIFT
- Clean Code
- clean architecture
- 클린 코드
- 리펙터링
- combine
- HIG
- MVVM
- 리펙토링
- rxswift
- Protocol
- swift documentation
- uitableview
- uiscrollview
- collectionview
- Observable
- ribs
- tableView
- 애니메이션
Archives
- Today
- Total
목록transaction 추적 (1)
김종권의 iOS 앱 개발 알아가기
[iOS - swift] 2. 인앱 결제 StoreKit 개념 - 상품 구매 (SKPaymentQueue, SKPaymentTransactionObserver, transaction 추적)
* 인앱 결제 포스팅 글 목차 UI에 상품정보 표출과 결제 정보 productID를 가지고 앱스토어에 상품 정보 요청하여 SKProduct 획득 1편에서 알아본대로 productID는 로컬이나 서버에 저장된 형태 유저가 특성 상품을 선택하면, SKProduct를 인수로하는 SKMutablePayment로 결제에 관한 정보 입력 let payment = SKMutablePayment(product: product) payment.quantity = 3 StoreKit에서 제공하는 queue에 위 payment를 추가하여, 앱스토어에 결제 요청을 제출 SKPaymentQueue.default().add(payment) 앱스토어와 통신하기 (Transaction Observer) 앱에서 transaction ..
iOS 응용 (swift)
2022. 11. 16. 22:16