DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Related

  • The Big Data Architecture Blueprint: Core Storage, Integration, and Governance Patterns
  • How to Interpret the Number of Spring ApplicationContexts in Integration Tests
  • Advanced Error Handling and Retry Patterns in Enterprise REST Integrations
  • Build a GitHub Slack Bot With AWS Bedrock and MCP, Part 2

Trending

  • Workflows vs AI Agents vs Multi-Agent Systems: A Practical Guide for Developers
  • Managing, Updating, and Organizing Agent Skills
  • A Spring Boot App With Half the Startup Time
  • How to Submit a Post to DZone
  1. DZone
  2. Testing, Deployment, and Maintenance
  3. Deployment
  4. Razorpay Payment Gateway Integration In iOS Swift

Razorpay Payment Gateway Integration In iOS Swift

In this article, we are going to focus on Razor Pay integration with iOS Swift 4 using Xcode 10.1. and learn how to integrate Razorpay with an iOS app.

By 
Chander Bhushan user avatar
Chander Bhushan
·
Apr. 10, 19 · Tutorial
Likes (1)
Comment
Save
Tweet
Share
18.8K Views

Join the DZone community and get the full member experience.

Join For Free

Introduction

Razorpay is one of the fastest growing payment solutions. It is robust and provides a developer-friendly API and SDK for Android, iOS, etc. It provides different modes of payments like credit cards, debit cards, net banking, UPI, and other popular wallets.

In this article, we are going to focus on Razor Pay integration with iOS Swift 4 using Xcode 10.1. and learn how to integrate Razorpay with an iOS app. We will create a demo app to integrate Razorpay and pay some amount by using the Razorpay payment gateway.Image title

Prerequisites

  1. xcode 10.1
  2. Swift 4
  3. A Razorpay account (you can signup from here https://dashboard.Razorpay.com/#/access/signup)
  4. your Razorpay key id (you can get from here https://dashboard.Razorpay.com/#/app/keys)

Development

Step 1: Install pod for Razorpay

  • Add pod 'Razorpay-pod' in the pod file.
  • Run ‘pod install’ from the terminal.
  • Now open the xcworkspace

Step 2: Develop a basic UI as shown below.

Step 3: Import Razorpay to your view Controller.

importRazorpay

Step 4:

  1. Create an action outlet of the pay now button in your view controller.
 @IBAction func payNowClicked(_ sender: Any) {
         }

2. Create an instance reference variable of type Razorpay.

private var razorpay:Razorpay?

3. Initialize that reference variable in the viewDidLoad method of the view controller by calling the init method with the public key and delegate.

override func viewDidLoad() {
      super.viewDidLoad()
       razorpay = Razorpay.initWithKey("rzp_test_FYCQAsmKTFF8FR", andDelegate: self)
    }

4. Create an extension of view controller and confirm RazorpayPaymentCompletionProtocol as shown below:

a) onPaymentSuccess(_ payment_id: String)

b) onPaymentError(_ code: Int32, description str: String)

 extension ViewController: RazorpayPaymentCompletionProtocol {
    func onPaymentSuccess(_ payment_id: String) {
        let alert = UIAlertController(title: "Paid", message: "Payment Success", preferredStyle: .alert)
        let action = UIAlertAction(title: "OK", style: .cancel, handler: nil)
        alert.addAction(action)
        self.present(alert, animated: true, completion: nil)
    }

    func onPaymentError(_ code: Int32, description str: String) {
        let alert = UIAlertController(title: "Error", message: "\(code)\n\(str)", preferredStyle: .alert)
        let action = UIAlertAction(title: "OK", style: .cancel, handler: nil)
        alert.addAction(action)
        self.present(alert, animated: true, completion: nil)
    }
}

As you can see in the above code, we have two methods onPaymentSuccess, and onPaymentError, the success method will be called if payment transaction is completed successfully where the onPaymentError will be called if the transaction is not completed successfully. It provides some error codes as given below:

Possible values for a failure code are:

  • 0: Network error
  • 1: Initialization failure/Unexpected behavior
  • 2: Payment canceled by the user

Now inside the action outlet of the pay button, create a parameter for razor pay like:

  let options: [String:Any] = [
"amount" : "100" //mandatory in paise like:- 1000 paise ==  10 rs 
            "description": "purchase description"
            "image": "https://url-to-image.png",
            "name": "business or product name"
            "prefill": [
                "contact": "9797979797",
                "email": "[email protected]"
                ],
                "theme": [
                    "color": "#F37254"
              ]
        ]

Progress Bar:

To support the theme color in the progress bar, pass HEX color values only.

After setting all the parameters, call the open method of Razorpay:

razorpay?.open(options)

Complete the Demo Project that you can download here.

Integration Swift (programming language)

Published at DZone with permission of Chander Bhushan. See the original article here.

Opinions expressed by DZone contributors are their own.

Related

  • The Big Data Architecture Blueprint: Core Storage, Integration, and Governance Patterns
  • How to Interpret the Number of Spring ApplicationContexts in Integration Tests
  • Advanced Error Handling and Retry Patterns in Enterprise REST Integrations
  • Build a GitHub Slack Bot With AWS Bedrock and MCP, Part 2

Partner Resources

×

Comments

The likes didn't load as expected. Please refresh the page and try again.

  • RSS
  • X
  • Facebook

ABOUT US

  • About DZone
  • Support and feedback
  • Community research

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 215
  • Nashville, TN 37211
  • [email protected]

Let's be friends:

  • RSS
  • X
  • Facebook