Я работаю над проектом, где мне нужно рисовать строки текста в UIView.Проблема не в рисовании строк, а в их вращении.Я хочу, чтобы текст был нарисован чуть выше и под тем же углом, что и красная линия.Проверьте иллюстрацию ниже:
пример иллюстрации:
Вот код ... (PS. Весь ненужный код удален)
class DrawView: UIView {
override func draw(_ rect: CGRect) {
let context = UIGraphicsGetCurrentContext()!
// Adding a line here.
context.move(to: CGPoint(x: 290, y: 650))
context.addLine(to: CGPoint(x: 530, y: 530))
context.strokePath()
// Flipping the coordinate system
context.textMatrix = .identity
context.translateBy(x: 0, y: bounds.size.height)
context.scaleBy(x: 1.0, y: -1.0)
// Creating the text path.
let path = CGMutablePath()
// "x" and "y" equals the staring point of the line. "width" equals the length of the line.
path.addRect(CGRect(x: 290, y: 650, width: 268, height: 30))
// I have tried rotating with the method below, but it rotates with the anchor point at (0, 0) in the UIView.
//context.rotate(by: 0.4636) // 0.4636 equals the angle of the red line in radians.
// Setting the text justification to center.
let justification = NSMutableParagraphStyle()
justification.alignment = NSTextAlignment.center
// Creating the attribute.
let attribute = [NSAttributedStringKey.font: UIFont(name: "Arial", size: 22.0)!,
NSAttributedStringKey.foregroundColor: UIColor.black,
NSAttributedStringKey.paragraphStyle: justification] as [NSAttributedStringKey : Any]?
// Creating the string and setting up the frame.
let attrString = NSAttributedString(string: "12032.00", attributes: attribute)
let framesetter = CTFramesetterCreateWithAttributedString(attrString as CFAttributedString)
let frame = CTFramesetterCreateFrame(framesetter, CFRangeMake(0, attrString.length), path, nil)
CTFrameDraw(frame, context)
}
}