Instance Property
インスタンスプロパティ
targetContentIdentifier
A string that identifies the user activity's content.
ある文字列、それはユーザアクティビティのもつ内容(コンテンツ)を識別します。
Declaration
宣言
var targetContentIdentifier: String
? { get set }
Discussion
議論
A target content identifier is a string you define within your app. This string provides a unique identifier for specific content in your app, like a particular document or the location of a piece of data in a database. This string isn't visible to the user.
ターゲットコンテンツ識別子は、あなたがあなたのアプリ内で定義する文字列です。この文字列は、あなたのアプリの中の特定のコンテンツに対する固有識別子を提供します、ある特定の書類またはデータベース中のあるデータ断片の位置など。この文字列は、ユーザには不可視です。
If you set this property, when the system delivers an NSUserActivity
object to an app with multiple scenes, it chooses the UIScene
whose UISceneActivationConditions
have the best match with the target content identifier. For more information, see UISceneActivationConditions
.
あなたがこのプロパティを設定するならば、その時システムはNSUserActivity
オブジェクトをあるアプリに複数のシーンで配達します、それはUIScene
のうちでそれのUISceneActivationConditions
がターゲットコンテンツ識別子との最も良い合致を持つものを選びます。さらなる情報として、UISceneActivationConditions
を見てください。
This property is optional but is highly recommended to create a great multitasking experience for apps that run on iPad. Setting this property doesn't automatically set needsSave
to true
.
このプロパティは随意です、しかし高度に推奨されます、卓越したマルチタスク体験をiPad上で動作するアプリそれらに創り出すためには。このプロパティを設定することは自動的にneedsSave
をtrue
に設定しません。
See Also
参照
Accessing Activity Information
アクティビティ情報にアクセスする
var title: String?
An optional, user-visible title for this activity, such as a document name or web page title.
随意の、このアクティビティに対するユーザが見ることができるタイトル、例えば書類名またはウェブページタイトル。
var requiredUserInfoKeys: Set<String>?
A set of keys that represent the minimal information about the activity that should be stored for later restoration.
ひとそろいのキー、それは後で復元するために格納されるべきアクティビティについての最小限の情報を表します。
var userInfo: [AnyHashable : Any]?
A dictionary containing app-specific state information needed to continue an activity on another device.
アクティビティを他のデバイスで継続するために必要とされるアプリ特有の状態情報を含んでいる辞書。
var needsSave: Bool
A Boolean value that indicates whether the state of the activity needs to be updated.
あるブール値、それはアクティビティの状態が更新されることを必要とするかどうかを指し示します。
var keywords: Set<String>
A set of localized keywords that can help users find the activity in search results.
ローカライズされたキーワードのひとそろい、それはユーザが検索結果においてアクティビティを見つける助けとなりえます。