Mobile SDKiOS
Installation
Add VoltCheckout to your iOS project using Swift Package Manager.
Swift Package Manager
In Xcode, go to File > Add Package Dependencies and enter the repository URL:
https://github.com/volt-io/ios-sdk.gitAdd VoltCheckout as a dependency to your target.
Package.swift
If you manage dependencies via Package.swift, add the following:
dependencies: [
.package(url: "https://github.com/volt-io/ios-sdk.git", from: "1.0.0"),
],
targets: [
.target(
name: "YourApp",
dependencies: [
.product(name: "VoltCheckout", package: "ios-sdk"),
]
),
]How is this guide?
Last updated on
Overview
VoltCheckout handles the entire open banking payment flow inside your iOS app. Give it a payment intent, let the user pick their bank and authorise the payment, and get back a result with the payment ID and status.
Quick start
A complete working checkout screen that collects a payment and prints the result.