var referrerURL : URL?
Discussion 議論
When no suitable app is installed on a resuming device and the webpage
property is set, the specified webpage is loaded and the user activity is continued in a web browser.
再開しているデバイス上にふさわしいアプリがインストールされないそしてwebpage
プロパティが設定される場合、指定されたウェブページはロードされます、そしてユーザアクティビティはウェブブラウザにおいて継続されます。
If your activity's content can be restored on the web or you support Safari universal links, be sure to set this property so that the system can resume the activity in Safari or your app. After setting the webpage
property on an activity for which is
is true
, also set the required
property, using the keys of the user
dictionary that must be stored. If you don’t also set the required
property, the user
dictionary will be empty when the activity is restored.
あなたのアクティビティのもつコンテンツがウェブ上で復元されることができるそしてあなたがSafariユニバーサルリンクをサポートするならば、このプロパティを設定することを確実にしてください、それでシステムはアクティビティをSafariまたはあなたのアプリにおいて再開できます。webpage
プロパティを、それに対してis
がtrue
であるアクティビティ上で設定した後、同様にrequired
プロパティを、格納されなければならないuser
辞書のキーを使って設定してください。あなたが同様にrequired
プロパティを設定しないならば、user
辞書はアクティビティが復元されるとき空です。
If is
is true
for this activity and you’re using both NSUser
and web markup to index the same item, set webpage
to the relevant URL on your website to avoid showing duplicate results in Spotlight. The NSUser
API does not perform any modifications to the URL that you specify. URL components, such as the query string and the fragment identifier, are used for matching the item against pages that are indexed by Applebot.
is
がこのアクティビティに対してtrue
であるそしてあなたがNSUser
とウェブマークアップの両方を同じ項目を索引に加えるのに使っているならば、webpage
をあなたのウェブサイト上の関連URLに設定することでSpotlightにおいて重複した結果を表示することを回避してください。NSUser
APIは、あなたが指定するURLに対して何ら修正を実行しません。URL構成要素、例えばクエリ文字列および断片識別子は、その項目をApplebotによって索引化されるページそれらと照合するために使われます。
Note 注意
The scheme of the webpage
must be http
or https
. Any other scheme throws an exception.
webpage
のスキームは、http
またはhttps
でなければなりません。何らかの他のスキームは例外をスローします。