KKArtistInfo
@interface KKArtistInfo : KKBOXOpenAPIObject
The object represents information about an artist on KKBOX.
-
The ID of the artist.
Declaration
Objective-C
@property (readonly, strong, nonatomic, nonnull) NSString *artistID;
Swift
var artistID: String { get }
-
The name of the artist.
Declaration
Objective-C
@property (readonly, strong, nonatomic, nonnull) NSString *artistName;
Swift
var artistName: String { get }
-
The URL of webpage about the artist.
Declaration
Objective-C
@property (readonly, strong, nonatomic, nullable) NSURL *artistURL;
Swift
var artistURL: URL? { get }
-
The images of the artist.
Declaration
Objective-C
@property (readonly, strong, nonatomic, nonnull) NSArray<KKImageInfo *> *images;
Swift
var images: [KKImageInfo] { get }