-
Notifications
You must be signed in to change notification settings - Fork 0
Removing Columns
cmancushman edited this page Oct 28, 2017
·
3 revisions
Declarations
-(void)removeColumns:(NSArray<StackBaseColumn *> *)columns completionBlock:(StackBaseEditCompletion) compBlock;-(void)removeColumnsWithNames:(NSArray<NSString *> *)columnNames completionBlock:(StackBaseEditCompletion) compBlock;Examples
[weakSelf.table removeColumns:[weakSelf.table textTypeColumns] completionBlock:^(BOOL success, NSString *responseMessage) {
if(success){
NSLog(@"Removal Successful.");
}else{
NSLog(@"Removal Unsuccessful.");
}
}];[weakSelf.table removeColumnsWithNames:[weakSelf.table numericTypeColumnNames] completionBlock:^(BOOL success, NSString *responseMessage) {
if(success){
NSLog(@"Removal Successful.");
}else{
NSLog(@"Removal Unsuccessful.");
}
}];Intro
Managing Tables
Managing Columns
Managing Rows
Conditions
Going Forward