ios – 创建一个循环的TableViewCell指标,如Apple Mail应用程序

ios – 创建一个循环的TableViewCell指标,如Apple Mail应用程序,第1张

概述我正在尝试为我的TableViewCell创建一个循环指示器,类似于Apple Mail应用程序中的电子邮件标记为未读时. 我有以下代码: var Indicator = CAShapeLayer()var IndicatorSize: CGFloat = 10// standard blue colorlet blueColor = UIColor(red: 0, green: 122. 我正在尝试为我的tableVIEwCell创建一个循环指示器,类似于Apple Mail应用程序中的电子邮件标记为未读时.

我有以下代码:

var Indicator = CAShapeLayer()var IndicatorSize: CGfloat = 10// standard blue colorlet bluecolor = UIcolor(red: 0,green: 122.0/255.0,blue:1.0,Alpha:1)// create circular CAShapeLayerIndicator.bounds = CGRect(x:0,y:0,wIDth:IndicatorSize,height:IndicatorSize)Indicator.position = CGPoint(x: 10,y: 10)Indicator.cornerRadius = Indicator.frame.size.wIDth/2// add as cell sublayercell.layer.addSublayer(Indicator)

虽然这似乎可以完成这项工作,但是圆圈并不像邮件应用程序那样平滑,角落看起来几乎像素化.我不确定这是因为我使用的是CAShapeLayer.我想知道是否有更好的选择.

我也可以将它作为单元格的对象,而不仅仅是一个图层,以便我可以使用cell.Indicator调用它?

解决方法
class CircleVIEw: UIVIEw {    overrIDe func drawRect(rect: CGRect) {        let context = UIGraphicsGetCurrentContext()        self.tintcolor.setFill()        CGContextFillEllipseInRect(context,rect)    }}
总结

以上是内存溢出为你收集整理的ios – 创建一个循环的TableViewCell指标,如Apple Mail应用程序全部内容,希望文章能够帮你解决ios – 创建一个循环的TableViewCell指标,如Apple Mail应用程序所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1014220.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-22
下一篇 2022-05-22

发表评论

登录后才能评论

评论列表(0条)

保存