GPKGContentsId

Objective-C

@interface GPKGContentsId : NSObject <NSMutableCopying>

Swift

class GPKGContentsId : NSObject, NSMutableCopying

Contents Id object, for maintaining a unique identifier for contents tables

  • id

    Id primary key

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *id;

    Swift

    var id: NSNumber! { get set }
  • Foreign key to Contents by table name

    Declaration

    Objective-C

    @property (nonatomic, strong) GPKGContents *contents;

    Swift

    var contents: GPKGContents! { get set }
  • The name of the actual content table, foreign key to gpkg_contents

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *tableName;

    Swift

    var tableName: String! { get set }
  • Initialize

    Declaration

    Objective-C

    - (instancetype)init;

    Swift

    init!()

    Return Value

    new contents id