I was wondering if it\'s possible to detect if an iOS user is using the webapp, or just visiting the normal way with safari browser.
The reason I want to achieve is tha
You have to detect this by using some javascript:
Now the extra check "standalone" in window.navigator is needed because some browsers do not have the standalone property and you don't want your code to crash for those browsers.
"standalone" in window.navigator
standalone