Integration with Office from iOS apps

We want our application to be able to open an Excel document in Excel for editing, and then be able to go back and see the changes when sent back to our application.

I haven't been able to get it to work with OneDrive or SharePoint links, although it says it is possible on this page:

https://msdn.microsoft.com/en-us/library/office/dn911482.aspx

I somehow figured it out?

+3


source to share


1 answer


Open the document in Excel iOS app

Similar to setting up labels. You can do this on iOS using the UIDocumentInteractionController

.

Developer.apple.com docs

tutorial



Extract document content inside your application

As another commenter said, use the Microsoft Graph API to do this:

[[[[[graphClient me] drive] items:<item_id>] request] getWithCompletion:^(MSGraphDriveItem *item, NSError *error){
    //Returns a MSGraphDriveItem object or an error if there was one.
}];

      

https://github.com/microsoftgraph/msgraph-sdk-ios/blob/master/docs/items.md#get-an-item

+1


source







All Articles