本文介绍了带有 CAShapeLayer 的 UIButton 使滚动时标题消失的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个带有一种方法的 ProfileCollectionViewCell:

I have a ProfileCollectionViewCellwith one method:

func configureCellWithProfile(profile: Profile) {

    shapeLayer.removeFromSuperlayer()

    let path = CGPathCreateMutable()

    CGPathMoveToPoint(path, nil, 0, 0)
    CGPathAddLineToPoint(path, nil, CGRectGetWidth(likeButton.frame), 0)
    CGPathAddLineToPoint(path, nil, CGRectGetWidth(likeButton.frame), CGRectGetHeight(likeButton.frame))
    CGPathCloseSubpath(path)

    shapeLayer.fillColor = profile.favourite ? UIColor.brilliantRose().CGColor : UIColor.blackSqueeze().CGColor
    shapeLayer.path = path

    likeButton.layer.masksToBounds = true
    likeButton.layer.addSublayer(shapeLayer)
}

加载后它看起来像这样:

And just after load it looks like this:

但在我滚动我的标题(来自 icomoon 字体的心脏)后消失:

but after I scroll my title (heart from icomoon font) disappear:

为什么?

推荐答案

我解决了问题,替换:

likeButton.layer.addSublayer(shapeLayer)

likeButton.layer.insertSublayer(shapeLayer, below: likeButton.titleLabel?.layer)

这篇关于带有 CAShapeLayer 的 UIButton 使滚动时标题消失的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-19 03:35