UIButton with CAShapeLayer makes title disappear while scrolling
问题 I have a ProfileCollectionViewCell with 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(