我有以下代码:
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应用程序所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)