Installation
Also look at our example apps repository
Check with Context360 team to get access to our example apps repository. This repo contains example apps which demonstrate the use of iOS SDK APIs and may also speed up your testing.
The quickest way to use c360 framework in your project is with CocoaPods. if you do not wish to use CocoaPods follow the alternate installation process.
Cocoapods
Install CocoaPods by executing
gem install cocoapods
If you don't have a Podfile in your Xcode project directory create one by executing
pod init
In your Podfile add the following lines. Replace YOUR_PROJECT_NAME with the name of your project in Xcode.
source 'https://[email protected]/c360user/c360iosspec.git'
platform :ios, '8.0'
target "YOUR_PROJECT_NAME" do
pod 'c360', '~>3.1.2'
end
Install the framework by executing
pod install
You should see a screen like

Enter the password provided to you by C360 team.
Manual Installation
Get the C360 framework package from [email protected] Unpack and drag and drop the c360.framework file into your Xcode project.
Updated over 7 years ago