objective c - Is there an alternative to (the deprecated) canOpenURL in iOS 9? -


i using apple's canopenurl: , openurl: methods detect & open other application. these methods deprecated in ios9, returns no.

is there alternate manage this?

thanks

you need provide "whitelist" plist

<key>lsapplicationqueriesschemes</key> <array>  <string>urlscheme</string>  <string>urlscheme2</string>  <string>urlscheme3</string>  <string>urlscheme4</string> </array>  

see more details

ios 9 has made small change handling of url scheme.

more details


Comments