QuramiLink is a convenient class that you can use to open an office page of Qurami directly from your app.
It checks the availability of Qurami Client on the destination device and, if present, opens the office page.
All you need to do is to provide a valid office link.
We will update this class to ensure that any integration with the Qurami iOS client will be seamlessly supported.
The usage is trivial, simply import QuramiLink.h
in your implementation file and call:
NSError *error;
[QuramiLink openQuramiOfficeWithOfficeLink: @"yourOfficeLink" error: &error];
if(error){
//there must be a problem with your officeLink, handle it here!
}
If you're currently using Xcode 7 along with the iOS 9 sdk, you have to add Qurami to your whitelisted apps by adding the key: quramiapp
to the: LSApplicationQueriesSchemes
array in your Info.plist
file.
For further infos watch this interesting wwdc 2015 session about privacy in iOS 9.
Browse our sample code for any doubts 😉!
QuramiLink is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod "QuramiLink"
and then execute
pod install
QuramiLink is available under the MIT license. See the LICENSE file for more info.