GPKGUserTableReader
Objective-C
@interface GPKGUserTableReader : NSObject
Swift
class GPKGUserTableReader : NSObject
Reads the metadata from an existing user table
-
Table name
Declaration
Objective-C
@property (nonatomic, strong) NSString *tableName;
Swift
var tableName: String! { get set }
-
Initialize
Declaration
Objective-C
- (instancetype)initWithTable:(NSString *)tableName;
Swift
init!(table tableName: String!)
Parameters
tableName
table name
Return Value
new table reader
-
Read the table
Declaration
Objective-C
- (GPKGUserTable *)readTableWithConnection:(GPKGConnection *)db;
Swift
func readTable(with db: GPKGConnection!) -> GPKGUserTable!
Parameters
db
db connection
Return Value
user table