AI-generated Key Takeaways
-
The
GCKApplicationMetadata
class provides information about a receiver application, such as its ID, name, icon images, and supported namespaces. -
It includes details about the sender application, like its identifier and launch URL, if available.
-
This class inherits from
NSObject
and conforms to theNSCopying
protocol. -
Developers can access properties like
applicationID
,applicationName
,images
,namespaces
, andsenderApplicationInfo
to get insights into the application. -
Instance methods such as
senderAppIdentifier
andsenderAppLaunchURL
provide further information about the sender application.
Overview
Information about a receiver application.
Inherits NSObject. Implements <NSCopying>.
Instance Method Summary | |
(NSString *__nullable) | - senderAppIdentifier |
The identifier (app ID) of the sender application that is the counterpart to the receiver application, if any. More... | |
(NSURL *__nullable) | - senderAppLaunchURL |
The launch URL (URL scheme) for the sender application that is the counterpart to the receiver application, if any. More... | |
Property Summary | |
NSString * | applicationID |
The application's unique ID. More... | |
NSString * | applicationName |
The application's name, in a format that is appropriate for display. More... | |
NSArray< GCKImage * > * | images |
Any icon images for the application, as an array of GCKImage objects. More... | |
NSArray< NSString * > * | namespaces |
The set of protocol namespaces supported by this application. More... | |
GCKSenderApplicationInfo * | senderApplicationInfo |
Information about the sender application that is the counterpart to the receiver application, if any. More... | |
Method Detail
- (NSString * __nullable) senderAppIdentifier |
The identifier (app ID) of the sender application that is the counterpart to the receiver application, if any.
- (NSURL * __nullable) senderAppLaunchURL |
The launch URL (URL scheme) for the sender application that is the counterpart to the receiver application, if any.
Property Detail
|
readnonatomiccopy |
The application's unique ID.
|
readnonatomiccopy |
The application's name, in a format that is appropriate for display.
|
readnonatomiccopy |
Any icon images for the application, as an array of GCKImage objects.
|
readnonatomiccopy |
The set of protocol namespaces supported by this application.
|
readnonatomiccopy |
Information about the sender application that is the counterpart to the receiver application, if any.