web-dev-qa-db-ja.com

iOS10のOpenURL

どうやらOpenURLはiOS 10で非推奨になりました。誰かが次に何をすべきかを説明できるドキュメントを持っていますか?私はすでにAppleサイトを調べて、OpenURLに関連するいくつかのことを発見しました。これは、彼らが今使うことを言っていることです。

UIApplication.shared().open(url: URL, options: [String: AnyObject], completionHandler: ((Bool) -> Void)?)

これがSwift 3.0でOpenURLを使用する新しい方法であるという証拠はありますか?さらに、それぞれoptions:およびcompletionHandler:パラメーターで使用される値は何ですか?

45
KSigWyatt

IOS10互換コードでアプリを更新する場合は、条件付きチェックも使用できます。

func open(scheme: String) {
   if let url = URL(string: scheme) {
      if #available(iOS 10, *) {
         UIApplication.shared.open(url, options: [:],
           completionHandler: {
               (success) in
                  print("Open \(scheme): \(success)")
           })
     } else {
         let success = UIApplication.shared.openURL(url)
         print("Open \(scheme): \(success)")
     }
   }
 }

使用法:

open(scheme: "tweetbot://timeline")

ソース

61
Async-

簡単な修正:

// Objective-C
UIApplication *application = [UIApplication sharedApplication];
[application openURL:URL options:@{} completionHandler:nil];

// Swift
UIApplication.shared.open(url, options: [:], completionHandler: nil)

完全な回答:

http://useyourloaf.com/blog/openurl-deprecated-in-ios10/

クレジット:キース・ハリソン(useyourloaf.com)

42
Ed.

emptyオプション辞書はopenUrlと同じ動作になります。

そうでなければ:

+-------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------+
| UIApplicationOpenURLOptionsSourceApplicationKey | NSString containing the bundle ID of the originating application                                                                             |
+-------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------+
| UIApplicationOpenURLOptionsAnnotationKey        | property-list typed object corresponding to what the originating application passed in UIDocumentInteractionController's annotation property |
+-------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------+
| UIApplicationOpenURLOptionsOpenInPlaceKey       | bool NSNumber, set to YES if the file needs to be copied before use                                                                          |
+-------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------+

UIApplication.hから

// Options are specified in the section below for openURL options. An empty options dictionary will result in the same
// behavior as the older openURL call, aside from the fact that this is asynchronous and calls the completion handler rather
// than returning a result.
// The completion handler is called on the main queue.
- (void)openURL:(NSURL*)url options:(NSDictionary<NSString *, id> *)options completionHandler:(void (^ __nullable)(BOOL success))completion NS_AVAILABLE_IOS(10_0) NS_EXTENSION_UNAVAILABLE_IOS("");

UIKIT_EXTERN UIApplicationOpenURLOptionsKey const UIApplicationOpenURLOptionsSourceApplicationKey NS_Swift_NAME(sourceApplication) NS_AVAILABLE_IOS(9_0);   // value is an NSString containing the bundle ID of the originating application
UIKIT_EXTERN UIApplicationOpenURLOptionsKey const UIApplicationOpenURLOptionsAnnotationKey NS_Swift_NAME(annotation) NS_AVAILABLE_IOS(9_0);   // value is a property-list typed object corresponding to what the originating application passed in UIDocumentInteractionController's annotation property
UIKIT_EXTERN UIApplicationOpenURLOptionsKey const UIApplicationOpenURLOptionsOpenInPlaceKey NS_Swift_NAME(openInPlace) NS_AVAILABLE_IOS(9_0);   // value is a bool NSNumber, set to YES if the file needs to be copied before use
12
scol

新しいUIApplicationメソッドopenURL:options:completionHandler:は、非同期で実行され、メインキューで指定された完了ハンドラーを呼び出します(このメソッドはopenURL:を置き換えます)。

これはAdditional Framework Changes>UIKithttps://developer.Apple.com/library/prerelease/content/releasenotes/General/WhatsNewIniOS/Articles/iOS10.html

5
Yasir

URLをロードする前に、まずいくつかのチェックを行う必要があります。以下のコードを確認してください。

if ([[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:@"https://www.gmail.com"]]){
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"https://www.gmail.com"] options:@{} completionHandler:^(BOOL success) {
                                //completion codes here
                            }];
}

これがお役に立てば幸いです。

2
handiansom

アプリが引き続きiOS 9以下をサポートしている場合は、古いopenURLを引き続き使用してください。展開ターゲットがiOS 10の場合にのみ、新しいものに移動する必要があります。

1
user6922583

実際にみましょう:

[String: AnyObject] = ["xxx key": "xxx value" as AnyObject, "yyy key": "yyy value" as AnyObject]

UIApplication.shared.open(URL(string: "http:google.com")!, options: actual, completionHandler: {(true) -> Swift.Void in
print("Refresh")
})

Xxxおよびyyyは、印刷するか空白のままにする文字列です。

1
Mushtaque Ahmed

機能を使用して設定を開くことができます:

func showAlert(title:String, message:String){
        let alert = UIAlertController(title: title,
                                      message: message,
                                      preferredStyle: UIAlertController.Style.alert)

        let okAction = UIAlertAction(title: "OK", style: .cancel, handler: nil)
        alert.addAction(okAction)

        let settingsAction = UIAlertAction(title: "Settings", style: .default, handler: { _ in
            // Take the user to Settings app to possibly change permission.
            guard let settingsUrl = URL(string: UIApplication.openSettingsURLString) else { return }
            if UIApplication.shared.canOpenURL(settingsUrl) {
                if #available(iOS 10.0, *) {
                    UIApplication.shared.open(settingsUrl, completionHandler: { (success) in
                        // Finished opening URL
                    })
                } else {
                    // Fallback on earlier versions
                    UIApplication.shared.openURL(settingsUrl)
                }
            }
        })
        alert.addAction(settingsAction)
        present(alert, animated: true, completion: nil)
    }

以下のようにこの関数を呼び出します

showAlert(title: "Unable to access the Photos", message: "To enable access, go to Settings > Privacy > Photos and turn on Photos access for this app.")
0
Prashant Sharma