-
Notifications
You must be signed in to change notification settings - Fork 0
Listing Tables
cmancushman edited this page Oct 26, 2017
·
4 revisions
Declaration
+(void)getNamesOfAllStackBaseTablesWithCompletionBlock:(StackBaseTableNameCompletion) compBlock;Example
[StackBaseClient getNamesOfAllStackBaseTablesWithCompletionBlock:^(BOOL success, NSString *responseMessage, NSArray<NSString *> *tableNames) {
if(success){
for(NSString *tableName in tableNames){
NSLog(@"Table %ld: %@", [tableNames indexOfObject:tableName], tableName);
}
}else{
NSLog(@"Operation Unsuccessful: %@", responseMessage);
}
}];Intro
Managing Tables
Managing Columns
Managing Rows
Conditions
Going Forward