1👍
You will have to write your custom app delegate and implement applicationOpenURLOptions
method to access the file.
For example,
var MyUIApplicationDelegate = UIResponder.extend(
{
applicationOpenURLOptions: function(app, url, options) {
var file = File.fromPath(url.path);
// process the file
return true;
},
},
{
name: "MyUIApplicationDelegate",
protocols: [UIApplicationDelegate],
}
);
application.ios.delegate = MyUIApplicationDelegate;
- [Vuejs]-How update nested object array value directly by v-model in VUE?
- [Vuejs]-Javascript get the next object from an array of objects based on a propery value
Source:stackexchange.com