TestsTested | ✓ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Jul 2015 |
Maintained by Muhammad Sohail Ismail.
This SDK makes it easy for iOS developers to work with Word documents, Spreadsheets, Presentations, Adobe PDFs, OpenDocument formats, barcodes, OCR and email formats and protocols in their apps.
Install via CocoaPods - This is the recommended approach as CocoaPods handles the linker flags, header paths, and download of source code dependencies on your behalf. CocoaPods is a dependency manager for Objective-C, which automates and simplifies the process of using 3rd-party libraries in your projects.
Project dependencies to be managed by CocoaPods are specified in a file called Podfile. Create this file in the same directory as your Xcode project (.xcodeproj) file:
$ touch Podfile
$ open -a Xcode Podfile
You just created the pod file and opened it using Xcode! Ready to add some content to the empty pod file?
Copy and paste the following lines into the editor window:
platform :ios, '5.0'
pod 'asposecloudsdk', '~> 1.1'
You shouldn’t use TextEdit to edit the pod file because TextEdit likes to replace standard quotes with more graphically appealing quotes. This can cause CocoaPods to get confused and display errors, so it’s best to just use Xcode or another programming text editor.
Now you can install the dependencies in your project:
$ pod install
From now on, be sure to always open the generated Xcode workspace (.xcworkspace) instead of the project file when building your project:
$ open <YourProjectName>.xcworkspace
Sign up with Aspose Cloud service at: https://cloud.aspose.com/SignUp
Create a new App and get your App SID and App Key
Import AsposeAPIs.h header file in your class.
#import "AsposeAPIs.h"
Call setAppKey:andAppSID: class method of ASPOSEApp with your App SID and App Key as an arguments to this method.
[ASPOSEApp setAppKey:@"xxxxxxxxxxxxxx" andAppSID:@"xxxxxxxxxxxxxxx"];
Set the base product URI to http://api.aspose.com/v1.1 by calling setBaseProductUri: class method of ASPOSEProduct.
[ASPOSEProduct setBaseProductUri:@"http://api.aspose.com/v1.1"];
At this point, everything's in place for you to start using Aspose for Cloud iOS SDK.
AsposeCloudSDK includes a suite of unit tests within the AsposeCloudSDKTests subdirectory. These Unit Tests also serves as examples of how to use the AsposeCloudSDK.
Your feedback is very important to us. Please email us all your queries and feedback at [email protected].
AsposeCloudSDK is available under the MIT license. See the LICENSE file for more info.