LCLeaderboardQueryOption
Objective-C
@interface LCLeaderboardQueryOption : NSObject
/// Select which key-value will be returned.
@property (nonatomic, nullable) NSArray<NSString *> *selectKeys;
/// Select which pointer's all value will be returned.
@property (nonatomic, nullable) NSArray<NSString *> *includeKeys;
@end
Swift
class LCLeaderboardQueryOption : NSObject
Undocumented
-
Select which key-value will be returned.
Declaration
Objective-C
@property (nonatomic, nullable) NSArray<NSString *> *selectKeys;
Swift
var selectKeys: [String]? { get set }
-
Select which pointer’s all value will be returned.
Declaration
Objective-C
@property (nonatomic, nullable) NSArray<NSString *> *includeKeys;
Swift
var includeKeys: [String]? { get set }