UITableViewCell 渐变图层覆盖删除按钮
Posted
技术标签:
【中文标题】UITableViewCell 渐变图层覆盖删除按钮【英文标题】:UITableViewCell Gradient Layer Covering Delete Button 【发布时间】:2016-01-26 14:35:05 【问题描述】:我正在使用这个答案为表格视图单元格创建渐变背景
How to make gradient background in UITableViewCell in ios?
-(void)addGradientBackgroundWithColor:(UIColor *)color
if (!self.gradientLayer)
self.gradientLayer = [CAGradientLayer layer];
self.gradientLayer.frame = self.bounds;
self.gradientLayer.startPoint = CGPointMake(0.0f, 0.5f);
self.gradientLayer.endPoint = CGPointMake(1.0f, 0.5f);
self.gradientLayer.colors = @[(id)[[color hmf_makeLightHighlight] CGColor], (id)[[UIColor whiteColor] CGColor]];
[self.layer insertSublayer:self.gradientLayer atIndex:0];
问题是当我滑动删除手势时,渐变层似乎覆盖了删除按钮。
有没有办法解决这个问题?
【问题讨论】:
一种解决方法是在显示操作按钮时隐藏 gradientLayer。还应该有一种方法可以更改项目的 z 顺序。 insertSublayer 索引为 0,也许如果您将此索引设置为 1,并且在 z 位置为 2 的视图中的单元格中的所有其他项目等,那么它可以工作。 您可以将渐变作为叠加视图移动并捕捉滑动手势,这是一个非常复杂的解决方法 【参考方案1】:添加这个解决了我的问题
- (void)layoutSubviews
// resize your layers based on the view's new bounds
self.gradientLayer.frame = self.bounds;
【讨论】:
【参考方案2】:我猜你在 UITableViewCell 中插入了渐变层。我认为插入 UITableViewCell 的 contentView 可能会解决您的问题。
【讨论】:
我刚试过 [self.contentView.layer insertSublayer:self.gradientLayer atIndex:0];它没有任何区别:(以上是关于UITableViewCell 渐变图层覆盖删除按钮的主要内容,如果未能解决你的问题,请参考以下文章