I have an iOS Application that I want to open from a URL/QR Code image and potentially add an item referenced within. I’m trying to use the AppDelegate method application:openURL:options:
The url I have setup is:
com.abc.master
and I have added also in info.pflist
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLName</key>
<string>AbcAppURLType</string>
<key>CFBundleURLSchemes</key>
<array>
<string>com.abc.master</string>
</array>
</dict>
</array>
<key>LSApplicationQueriesSchemes</key>
<array>
<string>com.abc.master</string>
</array>
When I access the QR Code or URL from Safari I get redirected to the App successfully but my method never gets triggered?.
Method application:didFinishLaunchingWithOptions:launchOptions
is also returning YES.
I do not understand why this is happening.




