【发布时间】:2015-11-05 09:49:37
【问题描述】:
我制作了一个圆形类,但我想将文本放在它的直接中心。
字体大小无关紧要,文本应始终显示在中心。
到目前为止,我只是尝试了任意值,直到它足够靠近中心。必须有更简单的方法。
import UIKit
class CircleView: UIView {
let circleLayer: CAShapeLayer = CAShapeLayer()
init(frame: CGRect, innerColor: CGColor = Colors.colorWithHexString("#858585").CGColor, rimColor: CGColor = UIColor.blueColor().CGColor) {
super.init(frame: frame)
self.backgroundColor = UIColor.clearColor()
let circlePath = UIBezierPath(arcCenter: CGPoint(x: frame.size.width / 2.0, y: frame.size.height / 2.0), radius: (frame.size.width - 10)/2, startAngle: 0.0, endAngle: CGFloat(M_PI * 2.0), clockwise: true)
// Setup the CAShapeLayer
circleLayer.path = circlePath.CGPath
circleLayer.fillColor = innerColor
circleLayer.strokeColor = rimColor
circleLayer.lineWidth = 5.0
// Don't draw the circle at start
circleLayer.strokeEnd = 1.0
layer.addSublayer(circleLayer)
}
func animateCircle(duration: NSTimeInterval) {
let animation = CABasicAnimation(keyPath: "strokeEnd")
animation.duration = duration
animation.fromValue = 0
animation.toValue = 1
// Do a linear animation
animation.timingFunction = CAMediaTimingFunction(name: kCAMediaTimingFunctionLinear)
circleLayer.strokeEnd = 1.0
// Do the actual animation
circleLayer.addAnimation(animation, forKey: "animateCircle")
}
required init(coder aDecoder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
}
【问题讨论】:
-
我没有在您的代码中看到 any 文本。我错过了什么吗?
标签: ios swift uilabel calayer uibezierpath