0

我使用drawRect制作了一个自定义按钮:并将它放在我的tableview的headerview中。我希望在选择编辑模式时隐藏自定义按钮。我知道我可以通过以下方法做到这一点:

-(void)setEditing:(BOOL)editing animated:(BOOL)animated

但由于某种原因,当我 1) 将其设置为 nil,2) 或使用 button.hidden 属性时,我的按钮实际上并没有消失。这是我的代码:

表视图控制器.h:

@interface ToDoTableViewController : UITableViewController <Properties2ViewControllerDelegate, UITableViewDelegate>{
    addButtonView *button;
}
@property (strong, nonatomic) NSMutableArray *taskArray;
@property (strong, nonatomic) NSMutableArray *completedArray;
-(IBAction)addCell:(id)sender;
-(void)buttonPressed:(id)sender;
@end

表视图控制器.m

-(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section{
    UIView *headerView;
    UIView *seperatorView;

    CGRect testFrame = CGRectMake(280.0, 5.0, 30.0, 30.0);
   button = [[addButtonView alloc]initWithFrame:testFrame];

    NSString *sectionTitle = @"Incomplete Tasks";
    NSString *section2Title = @"Completed Tasks";
    UILabel *label = [[UILabel alloc]init];
    label.textColor = [UIColor colorWithRed:236.0/255 green:240.0/255 blue:241.0/255 alpha:1.0f];
    label.font = [UIFont fontWithName:@"HelveticaNeue-Light" size:25];
    label.backgroundColor = [UIColor clearColor];
    label.frame = CGRectMake(10.0, 0.0, 320.0, 40.0);
    headerView = [[UIView alloc]initWithFrame:label.frame];

    [button addTarget:self action:@selector(addCell:) forControlEvents:UIControlEventTouchUpInside];
    [button addTarget:self action:@selector(buttonPressed:) forControlEvents:UIControlEventTouchUpInside];

    CGRect sepFrame = CGRectMake(0, headerView.frame.size.height-2, 320, 1);
    seperatorView = [[UIView alloc] initWithFrame:sepFrame];
    seperatorView.backgroundColor = [UIColor colorWithRed:236.0/255 green:240.0/255 blue:241.0/255 alpha:1.0f];
    [headerView addSubview:seperatorView];

    switch (section) {
        case 0:
            label.text = sectionTitle;
            [headerView addSubview:label];
             [headerView addSubview:button];
            break;
        case 1:
         label.text = section2Title;

            [headerView addSubview:label];
          // if (completedArray == nil)
            //   headerView.hidden = YES;
            break;

    }
    return headerView;
}

-(void)setEditing:(BOOL)editing animated:(BOOL)animated{
    [super setEditing:editing animated:animated];

    if([self isEditing]){
        button.hidden = YES;
    }else {
        button.hidden = NO;
    }
}

- -编辑 - -

-(void)setEditing:(BOOL)editing animated:(BOOL)animated{
    [super setEditing:editing animated:animated];

    if([self isEditing]){
        button.hidden = YES;
        [[self tableView] reloadData]; //shouldn't this make the button dissapear?
    }else {
        button.hidden = NO;
    }
}
4

1 回答 1

0

每当重新加载表视图时,您的代码将重新创建整个标题,包括创建一个新按钮。因此,您可能已将旧按钮设置为隐藏,然后它被销毁并替换为新的可见按钮。

返回标头时,要么创建一次并始终返回相同的实例,然后更改hidden属性就可以了。或者,isEditing每次创建表头时检查表并决定结果如何。


让我们使用更有效的标头重用选项:

  1. 创建一个属性来保存标题视图 - 一个数组。
  2. viewDidLoad创建标题视图(使用您当前的代码,但移动到不同的方法)。
  3. 将标题视图添加到属性(确保首先初始化数组)
  4. 更改viewForHeaderInSection为仅从数组中返回标头(基于section
  5. 遍历setEditing:数组并隐藏/显示每个按钮

(您可以将按钮存储在另一个数组中以简化操作)

于 2013-07-01T06:20:00.930 回答