I have created html with following body:
<html>
    <head>
        <meta http-equiv="Refresh" content="3; URL='MyApp://?Success'">
    </head>
    <body>
      success
    </body>
</html>
When i try to open page where html uploaded. from my iphone (safari) my app successfully opened but
application:openURL:options:
does not called. Have u any ideas?
my info plist look like this:
<array>
        <string>MyApp</string>
    </array>
    <key>CFBundleURLTypes</key>
    <array>
        <dict>
            <key>CFBundleURLSchemes</key>
            <array>
                <string>MyApp</string>
            </array>
            <key>CFBundleURLName</key>
            <string>url here</string>
        </dict>
    </array>
My appDelegate Methods:
func application(_ app: UIApplication, open url: URL, options [UIApplication.OpenURLOptionsKey : Any] = …