- Get Started
- Image & Video APIs overview
- Developer kickstart
- SDK quick starts
- Try it!
- MCP servers and LLM tools (Beta)
- VS Code Extension (Beta)
- Video tutorial library
- Programmatic asset management
- Programmatic upload
- Upload programmatically
- Create upload presets
- Auto upload
- Moderate images with AI
- Use AI to generate image captions
- Upload images in Flutter
- Upload images in Node.js
- Auto-tag images in Node.js
- Upload multiple files in Node.js
- Upload videos in Node.js
- Upload images in Python
- Auto-tag images in Python
- Upload videos in Python
- Upload images in PHP
- Upload images in Go
- Upload assets in a React app
- Upload assets in a Vue.js app
- Drag-and-drop uploads in React
- Upload assets in a Next.js app
- Upload assets with Server Actions
- Upload assets in Svelte
- Upload assets in a SvelteKit app
- Upload assets in a Remix app
- Upload images in Hono
- Use webhooks to remove backgrounds
- Upload images in Laravel
- Interaction with Cloudinary APIs
- Cloudinary SDKs
- Find your credentials
- Configure the JavaScript SDK
- Configure the React SDK
- Configure the Angular SDK
- Configure the Flutter SDK
- Configure Svelte Cloudinary
- Configure the Javascript SDK in Svelte
- Getting started with Cloudinary in Node.js
- Configure the Node.js SDK
- Configure the Python SDK
- Configure the PHP SDK
- Configure the Go SDK
- Configure the Vue.js SDK
- Configure the Next.js SDK
- List images in Next.js
- Lazy load images with Next.js
- Image fallbacks in JavaScript
- Captioning on upload with Node.js
- Delete assets with Node.js
- Manage images in a Django app
- Cloudinary CLI
- Widgets and tools
- Programmatic upload
- Optimization and delivery
- Transformations
- Get started with transformations
- Advanced transformation features
- Text overlay transformations
- Complex transformations
- Named transformations
- Named transformations using TX Builder
- Advanced image components
- Trim videos in Node.js
- Splice videos in Node.js
- Zoompan effect
- Video transformations
- Crop and resize images in React
- Crop and resize videos in React
- Crop and resize images in Python
- Remove backgrounds and add drop shadows
- AI generative fill in Next.js
- Color accessibility in JavaScript
- Transformations for social media
- Dev Hints on YouTube
- Dev Hints en Español
- Cloudinary Café Training Sessions
- Programmatic asset management
- Additional onboarding resources
- Guides
- Cloudinary Image
- Product overview
- Image transformations
- Image transformations overview
- Resizing and cropping
- Placing layers on images
- Effects and enhancements
- Background removal
- Generative AI transformations
- Face-detection based transformations
- Custom focus areas
- Transformation refiners
- Animated images
- Transformations on 3D models
- Conditional transformations
- User-defined variables and arithmetic transformations
- Custom functions
- Image optimization and delivery
- Programmatic image creation
- Product Gallery widget
- Media Editor widget
- Image add-ons
- Cloudinary Video
- Upload
- Asset management
- Account management
- Retail and e-commerce
- User-generated content
- Accessible media
- AI in action
- Native mobile
- Add-ons
- Advanced Facial Attributes Detection
- Amazon Rekognition AI Moderation
- Amazon Rekognition Video Moderation
- Amazon Rekognition Auto Tagging
- Amazon Rekognition Celebrity Detection
- Aspose Document Conversion
- Cloudinary AI Background Removal
- Cloudinary AI Content Analysis
- Cloudinary AI Vision
- Cloudinary Duplicate Image Detection
- Google AI Video Moderation
- Google AI Video Transcription
- Google Auto Tagging
- Google Automatic Video Tagging
- Google Translation
- Imagga Auto Tagging
- Imagga Crop and Scale
- Perception Point Malware Detection
- Microsoft Azure Video Indexer
- OCR Text Detection and Extraction
- Pixelz - Remove the Background
- URL2PNG Website Screenshots
- VIESUSTM Automatic Image Enhancement
- WebPurify Image Moderation
- Cloudinary Image
- References
- SDKs
- Release Notes
iOS SDK
Last updated: Dec-24-2025
The Cloudinary iOS SDK provides simple, yet comprehensive image and video upload, transformation, optimization, and delivery capabilities through the Cloudinary APIs, that you can implement using code that integrates seamlessly with your existing iOS application.
How would you like to learn?
| Resource | Description |
|---|---|
| iOS quick start | Get up and running in five minutes with a walk through of installation, configuration, upload, management and transformations. |
| Sample projects | Explore sample projects to see how to implement Cloudinary functionality such as upload and delivery with transformations. |
| Cloudinary iOS SDK GitHub repo | Explore the source code and see the CHANGELOG for details on all new features and fixes from previous versions. |
| Video tutorials | Watch tutorials relevant to your use cases to learn how to use Cloudinary features. |
| Cloudinary Academy | Try the free Introduction to Cloudinary's iOS SDK online course, where you can learn how to upload, transform and optimize your assets, explore the native video player and deliver images for seamless asset downloading. |
Install
Cloudinary's iOS SDK is available as an open-source library. Use one of the following options to install it:
CocoaPods installation
CocoaPods is a dependency manager for Swift and Objective-C Cocoa projects. Add the Cloudinary dependency to your Podfile:
Then, run the command:
This runs a script to install the Cloudinary header files in your Pods roots folder.
Carthage installation
Carthage is a decentralized dependency manager for Cocoa.
- Create your Cartfile. Go to the application directory and run the following command:
touch Cartfile - Add the following line to your Cartfile:
github "cloudinary/cloudinary_ios" ~> 5.1.0 - Run the following command:
carthage update --use-xcframeworks
Swift Package Manager installation
The Swift Package Manager is a tool for managing the distribution of Swift code. It's integrated with the Swift build system to automate the process of downloading, compiling, and linking dependencies. Once you have your Swift package set up:
Option 1 - in your code, add Cloudinary to the dependencies value of your Package.swift file:
Option 2 - via your environment:
- Select File > Add Packages
- Add the repository URL: https://github.com/cloudinary/cloudinary_ios.git
- Select "Up to Next Major" with version "5.1.0"
Manual installation
If you prefer not to use a dependency manager, you can add Cloudinary manually by adding it as a submodule to your project.
- If your project is not initialized as a git repository, run the command:
$ git init - To add Cloudinary as a git submodule, run the command:
$ git submodule add https://github.com/cloudinary/cloudinary_ios.git - Open Terminal and navigate to your project's top level directory.
- Drag
Cloudinary.xcodeprojinto the Project Navigator of your application's Xcode project. It should appear under your application's blue project icon. - Select
Cloudinary.xcodeprojand make sure the deployment target matches that of your application target. - Select your application project. Under TARGETS select your application, open the General tab, click on the + button under Embedded Binaries and select Cloudinary.framework.
Configure
Include the Cloudinary iOS classes in your code:
Set required configuration parameters
To use the Cloudinary iOS library you have to configure at least your cloudName. You can find your Cloud name in the Dashboard of the Cloudinary Console, and you can find all of your credentials, including API Key and API Secret, on the API Keys page of the Cloudinary Console Settings.
- Most functionality implemented on the client side doesn't require authentication, so only your
cloud_nameis required to be configured, and not your API key or secret.Your API secret should never be exposed on the client side, so if you want to use signed uploads or generate delivery signatures, you'll also need server-side code, for which you can use one of our backend SDKs.
- For backward compatibility reasons, the default value of the optional
secureconfiguration parameter isfalse. However, for most modern applications, it's recommended to configure thesecureparameter totrueto ensure that your transformation URLs are always generated as HTTPS.
The entry point of the library is the CLDCloudinary object, which initializes with an instance of CLDConfiguration with the desired parameters, for example:
Alternatively, you can pass a cloudinaryURL in the form cloudinary://@[CLOUD_NAME]?{URL config parameters}, for example:
Set additional configuration parameters
In addition to the required configuration parameters, you can define a number of optional configuration parameters if relevant.
urlAnalytics configuration option. Learn more.
Thanks for your time!
Use
Once you've installed and configured the iOS SDK, you can use it for:
- Uploading files to your product environment: You can upload any files, not only images and videos, set your own naming conventions and overwrite policies, moderate and tag your assets on upload, and much more. See example
- Transforming and optimizing images and videos: Keeping your original assets intact in your product environment, you can deliver different versions of your media - different sizes, formats, with effects and overlays, customized for your needs. See example
Quick example: File upload
The following Swift code uses an unsigned upload preset to upload the dog.mp4 video. When the video upload is complete, the specified notification URL receives details about the uploaded media asset.
- Read the Upload guide to learn more about customizing uploads, using upload presets and more.
- See more examples of image and video upload using the Cloudinary iOS library.
- Explore the Upload API reference to see all available methods and options.
Quick example: Transform and optimize
Take a look at the following transformation code and the image it delivers:
This relatively simple code performs all of the following on the original front_face.jpg image before delivering it:
- Crop to a 150x150 thumbnail using face-detection gravity to automatically determine the location for the crop
- Round the corners with a 20 pixel radius
- Apply a sepia effect
- Overlay the Cloudinary logo on the southeast corner of the image (with a slight offset). Scale the logo overlay down to a 50 pixel width, with increased brightness and partial transparency (opacity = 60%).
- Rotate the resulting image (including the overlay) by 10 degrees
- Convert and deliver the image in PNG format (the originally uploaded image was a JPG)
And here's the URL that's automatically generated and included in an image tag from the above code:
In a similar way, you can transform a video.
- Read the Transform and customize assets guide to learn about the different ways to transform your assets.
- See more examples of image and video transformations using the Cloudinary iOS library.
- See all possible transformations in the Transformation URL API reference.
iOS SDK features
The iOS SDK provides the following key features:
- Build dynamic URLs for delivering images and videos with on the fly transformations
- Implement direct file upload from your mobile application directly to your Cloudinary product environment
- Support chunked upload for large files
- Preprocess files before uploading
- Handle asynchronous upload callbacks
- Automatic error handling for network disconnections, timeouts, etc.
- Save bandwidth with a cache-enabled resource downloader
- Support code in Objective-C
Sample projects
Take a look at the iOS sample projects page to help you get started integrating Cloudinary into your iOS application.
- Try out the iOS SDK using the quick start.
- Learn more about uploading images and videos using the iOS SDK.
- See examples of powerful image and video transformations using iOS code, and see our image transformations and video transformation docs.
- Stay tuned for updates by following the Release Notes and the Cloudinary Blog.