您的位置:首页 > 产品设计 > UI/UE

iOS-UIAlertController弹出延迟(UIAlertController弹出缓慢,tableViewCell点击时背景颜色改变)

2017-02-14 10:47 696 查看

1.前言

今天有个小伙伴问我,他在给tableViewCell添加选中事件的时候,调用UIAlertController,但是UIAlertController弹出有点延迟,不知道什么原因,我也找了好久。

经过我测试我发现了一种方法可以解决;具体原因我认为是runloop没有及时更新UI。

2.解决办法

方法一:

[selfpresentViewController:AlertControlleranimated:YEScompletion:nil];
改为下面的方法:

dispatch_async(dispatch_get_main_queue(), ^{

                    [selfpresentViewController: AlertControlleranimated:
YEScompletion:
nil];

                });

方法二:

一部分小伙伴把tableViewCell的selectionStyle设成了UITableViewCellSelectionStyleNone,只需要将这个设置去掉就好或者设置成UITableViewCellSelectionStyleDefault就好;

3.说明

针对第二种修改方法;

在这我就多说一下,很多小伙伴设置selectionStyle=UITableViewCellSelectionStyleNone,是因为cell有个选中背景颜色,会影响cell上面控件的颜色。我们可以这样设置,可以先设置cell的选中背景视图如下:

UIView *cellBlack = [[UIView alloc] initWithFrame:cell.frame];
cellBlack.backgroundColor = [UIColor clearColor];
cell.selectedBackgroundView = cellBlack;
然后在cell里面设置:

- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
UIColor *originColor = self.leftMessage.backView.backgroundColor;
[super setSelected:selected animated:animated];
self.leftMessage.backView.backgroundColor = originColor;
}

- (void)setHighlighted:(BOOL)highlighted animated:(BOOL)animated {
UIColor *originColor = self.leftMessage.backView.backgroundColor;
[super setHighlighted:highlighted animated:animated];
self.leftMessage.backView.backgroundColor = originColor;
}


希望对你有所帮助!
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐