使用TableFooterView和行动

时间:2015-07-09 21:22:18

标签: ios objective-c uitableview

这是我用tableviewcontroller设置的基本tableview。重用标识符只是一个浅绿色的原型单元格。

#import "ViewController.h"

@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib
    self.tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 0, 25)];
    [self.tableView.tableFooterView setBackgroundColor:[UIColor colorWithRed:215/255 green:1 blue:1 alpha:1]];
}

- (BOOL) tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath {
    return YES;
}

- (NSArray *)tableView:(UITableView *)tableView editActionsForRowAtIndexPath:(NSIndexPath *)indexPath {
    UITableViewRowAction *removeFolderRowAction = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDefault
                                                                                 title:@"hi"
                                                                               handler:^(UITableViewRowAction *action, NSIndexPath *indexPath)
                                               {
                                                   return;
                                               }];

    return @[removeFolderRowAction];
}

- (void) tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
    return;
}

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    return 4;
}

- (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    return [self.tableView dequeueReusableCellWithIdentifier:@"cell"];
}

@end

这产生了这个流程:

enter image description here enter image description here enter image description here enter image description here

在没有底部分隔符的情况下开始,如果您在最后一个单元格上进入编辑模式,则仍然没有底部分隔符,但在完成编辑后,将出现一个全宽分隔符,如果再次进入编辑模式,则会离开。如果我将tableFooterView作为带有框架CGRectZero的视图,它将以预期的方式运行(有一个分隔符,与所有其他分隔符一样,在进入编辑模式时不会移动),但是只要tableFooterView有一些高度,它可以追溯到上面的图片。

1 个答案:

答案 0 :(得分:1)

所以我挖了一下,ios 11为我解决了这个问题。似乎是以前版本中的错误。 对我来说,分隔符将显示在触及页眉或页脚的最后几行