My app has to be called when a certain file is selected by the user.
I need this functionality on iOS.
In the start() method the URI is obtained:
String arg=Display.getInstance().getProperty("AppArg",null);
and then used
...
...
is=Storage.getInstance().createInputStream(arg);
...
...
Is it "arg" the file URI parameter, so it can be used as the input stream name?
I mean, on iOS. Does it work in your iOS apps?
Thanks in advance