0

How can I open a URL in Safari from Settings?

Something like in the Nike+ App

Does it need to be customized? I can't seem to find a Type for adding a URL in the Root.plist.

  • Refer this link - http://stackoverflow.com/questions/5959274/how-can-you-launch-a-url-from-the-ios-settings-bundle – RAJA Mar 19 '14 at 03:16
  • refer this url.. hope this may help you http://digdog.tumblr.com/post/490664298/ddopenurlspecifier – RAJA Mar 19 '14 at 03:48

2 Answers2

0

you can check out this on git https://github.com/futuretap/InAppSettingsKit

then put this value into the plist

    <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>DefaultValue</key>
    <string>inappsettingskit.com</string>
    <key>File</key>
    <string>http://www.inappsettingskit.com/</string>
    <key>Title</key>
    <string>Open URL</string>
    <key>Type</key>
    <string>IASKOpenURLSpecifier</string>
</dict>
</plist>
GSiklos
  • 21
  • 2
0

Similar to GSiklos's answer abouve, but using the plist editor in XCode , the change would be:

PList Editor Example

Note that as default, any URL's shown in the IASK settings are NOT displayed in the standard iOS settings page (usefully)

Izzy Manpo
  • 449
  • 1
  • 3
  • 16