4

我正在尝试使用以下代码使 UI Button 成为切换按钮:

- (void)tapButton:(id)sender{
    UIButton *button = sender;
    if (!button.selected){
        [self performSelector:@selector(highlight:) withObject:button afterDelay:0.0];
    }else{
        [self performSelector:@selector(removeHighlight:) withObject:button afterDelay:0.0];
    }
}

- (void)highlight:(UIButton *)button{
    button.selected = !button.selected;
    button.highlighted = YES;
}

- (void)removeHighlight:(UIButton *)button{
    button.selected = !button.selected;
    button.highlighted = NO;
}

但是,当按钮处于选定模式时,我得到了一个奇怪的伪像。

未选中的:

在此处输入图像描述

已选择:

在此处输入图像描述

4

1 回答 1

5

只需将按钮类型设置为“自定义”而不是“系统”即可。我猜这个奇怪的错误与 iOS7 上的新 Tint 功能有关。这可能是错误的,因为您的 title 属性是一个空字符串 @""。

于 2014-03-16T18:37:42.667 回答