In order to be able to integrate our app with Schoolwork, we implemented Open in place logic.
Is there any way to collect data that will tell us which document was opened from Schoolwork?
Is there any way to collect data that will tell us which document was opened from Schoolwork?
when someone opens a document in place, this method is being called:
and here you can see the open in place flag
so my question is: is there any way I can check if the document was opened from Schoolwork?
Code Block - (BOOL)application:(UIApplication *)app openURL:(NSURL *)url options:(NSDictionary<UIApplicationOpenURLOptionsKey, id> *)options
and here you can see the open in place flag
Code Block options[UIApplicationOpenURLOptionsOpenInPlaceKey]
so my question is: is there any way I can check if the document was opened from Schoolwork?