LCObjectFetchOption

Objective-C

@interface LCObjectFetchOption : NSObject

Swift

class LCObjectFetchOption : NSObject

Option for fetch-method of LCObject.

  • Selecting which only key-value will be returned. If the key is prefixed with -, means which only key-value will NOT be returned.

    Declaration

    Objective-C

    @property (nonatomic, nullable) NSArray<NSString *> *selectKeys;

    Swift

    var selectKeys: [String]? { get set }
  • Selecting which pointer’s all value will be returned.

    Declaration

    Objective-C

    @property (nonatomic, nullable) NSArray<NSString *> *includeKeys;

    Swift

    var includeKeys: [String]? { get set }