Last updated: Jun-04-2024
Overview
Cloudinary's iOS SDK provides simple, yet comprehensive image and video upload, transformation, optimization, and delivery capabilities that you can implement using code that integrates seamlessly with your existing iOS application.
This guide relates to the latest released version of the Cloudinary iOS library.
- For details on all new features and fixes from previous versions, see the CHANGELOG.
- By default, URLs generated with this SDK include an appended SDK-usage query parameter. Cloudinary tracks aggregated data from this parameter to improve future SDK versions and no individual data is collected. If needed, you can disable the
analytics
configuration option. Learn more.
Quick example: Transformations
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). The logo is scaled 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 would be included in the image tag that's automatically generated from the above code:
In a similar way, you can transform a video.
- See all possible transformations in the Transformation URL API reference.
- See more examples of image and video transformations using the Cloudinary iOS library.
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 will receive details about the uploaded media asset.
iOS SDK 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
Installation
The following instructions detail the installation of the Cloudinary iOS library. Use one of the following options:
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 will run 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" ~> 4.0.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 "4.0.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.xcodeproj
into the Project Navigator of your application's Xcode project. It should appear under your application's blue project icon. - Select
Cloudinary.xcodeproj
and 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.
Setup
To use the Cloudinary iOS library you have to configure at least your cloudName
. You can additionally define a number of optional configuration parameters if relevant. You can find your Cloud name in the Programmable Media 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 does not require authentication, so only your
cloud_name
is 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
secure
configuration parameter isfalse
. However, for most modern applications, it's recommended to configure thesecure
parameter totrue
to ensure that your transformation URLs are always generated as HTTPS.
The entry point of the library is the CLDCloudinary
object, which is initialized with an instance of CLDConfiguration
with the desired params, for example:
Another option is to pass a cloudinaryURL in the form cloudinary://@[CLOUD_NAME]?{URL config parameters}, for example:
Thanks for your time!
iOS capitalization and data type guidelines
When using the iOS SDK, keep these guidelines in mind:
- Parameter names:
camelCase
. For example: fileUrl - Classes:
PascalCase
. For example: CLDTransformation - Methods:
camelCase
. For example: createUploader - Pass parameter data as a
Dictionary
Sample project
The iOS example project gives a sample of using the iOS SDK to perform some of Cloudinary's functionality.
- 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 with the Programmable Media Release Notes and the Cloudinary Blog.