AI-generated Key Takeaways
-
GMSPlacePhotoMetadataList
is an object representing a collection of place photo metadata. -
It primarily contains an array of
GMSPlacePhotoMetadata
objects, accessible through theresults
property. -
This class provides access to metadata about photos associated with a specific place, like a restaurant or landmark.
GMSPlacePhotoMetadataList
@interface GMSPlacePhotoMetadataList : NSObject
A list of GMSPlacePhotoMetadata
objects.
-
The array of
GMSPlacePhotoMetadata
objects.Declaration
Swift
var results: [GMSPlacePhotoMetadata] { get }
Objective-C
@property (nonatomic, copy, readonly) NSArray<GMSPlacePhotoMetadata *> *_Nonnull results;