I saw in another thread that one can open an app from the browser.
Is it possible to load a library and call it’s functions from a script?
10xs,
Nahum
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
iOS does not use dll files for shared library code, but rather dylib files. (Like MacOS). But that’s sort of part of the story. You can’t just “call shared library” code — you’d have to have an application that performs the actions you want.
If you create an application that has a webview component, there exists methods that allow you to interact with the core OS from the webview, but only in a custom application — not from a stock standard webpage loaded in mobile Safari.