gpt4 book ai didi

ios - Swift 4 - PDFAnnotation 文本(或 UITextField)为文本大小

转载 作者:搜寻专家 更新时间:2023-10-31 23:05:56 25 4
gpt4 key购买 nike

我已经创建了一个 PDFAnnotation 文本小部件并且一切正常,它是多行的,所以我想要做的是将这个注释的大小设置为文本的大小......这有意义吗?我该怎么做?

这是我的注释:

let page = pdfView.currentPage

textAnnotation = PDFAnnotation(bounds: CGRect(x: 300, y: 200, width: 600, height: 100), forType: PDFAnnotationSubtype(rawValue: PDFAnnotationSubtype.widget.rawValue), withProperties: nil)

textAnnotation.widgetFieldType = PDFAnnotationWidgetSubtype(rawValue: PDFAnnotationWidgetSubtype.text.rawValue)

textAnnotation.font = UIFont.systemFont(ofSize: 80)

textAnnotation.fontColor = .red

textAnnotation.isMultiline = true

textAnnotation.widgetStringValue = "Text Here"

page!.addAnnotation(textAnnotation)

如何使文本的大小与 native 工具中的一样?或者我如何对 UITextField 执行此操作,因为我可能或多或少地做同样的事情。

仍然一无所获......这太难了。

更新

目前还没有对此进行处理。但是在查看 native iOS PDF 注释之后,它似乎不会使文本字段变长,而是转到下一行并使文本区域的高度变大....我将 PDFAnnotation 设置为 isMultiline,但是当我转到下一行时,我看不到它,因为我的高度只有 100.0....那么它如何转到下一行并增加文本区域的高度?

更新

我创建了自己的自定义 PDFAnnotation

class TextAnnotation:  PDFAnnotation {

var currentText: String?

override init(bounds: CGRect, forType annotationType: PDFAnnotationSubtype, withProperties properties: [AnyHashable : Any]?) {
super.init(bounds: bounds, forType: annotationType, withProperties: properties)

self.widgetFieldType = PDFAnnotationWidgetSubtype(rawValue: PDFAnnotationWidgetSubtype.text.rawValue)

self.font = UIFont.systemFont(ofSize: 80)

self.isMultiline = true

self.widgetStringValue = "Text Here"

self.currentText = self.widgetStringValue!
}

override func draw(with box: PDFDisplayBox, in context: CGContext) {
UIGraphicsPushContext(context)
context.saveGState()

let paragraphStyle = NSMutableParagraphStyle()
paragraphStyle.alignment = .center

let attributes: [NSAttributedString.Key: Any] = [
.paragraphStyle: paragraphStyle,
.font: UIFont.systemFont(ofSize: 80),
.foregroundColor: UIColor.red
]

widgetStringValue!.draw(in: pageBounds, withAttributes: attributes)

context.restoreGState()
UIGraphicsPopContext()
}

required init?(coder aDecoder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}

}

我注意到每次输入内容时都会调用 draw 方法,所以我尝试做的是将 self.widgetStringValue 与变量 currentText 进行比较,但是当我尝试更改宽度时,如果它们彼此不相等,它不会'做任何事情。

也许我可以创建一个委托(delegate)方法并在我的 ViewController 中调用它以再次删除/添加注释...或者尝试从那里更改边界。

最佳答案

您可以使用这样一个简单的辅助函数来计算高度

/*
- Parameters:
- constrainedWidth: The max width of the label
- fontSize: Font size used for the UILabel
- text: The String used in the calculations

- Returns: CGFLoat which is the height of the label
*/
func estimatedHeight(constrainedWidth width: CGFloat, fontSize: CGFloat, text:String) -> CGFloat {
let tempLabel = UILabel(frame: CGRect(x: 0, y: 0, width: width, height: .greatestFiniteMagnitude))
tempLabel.text = text
tempLabel.lineBreakMode = .byWordWrapping
tempLabel.numberOfLines = 0
tempLabel.font.withSize(fontSize)
tempLabel.sizeToFit()

return tempLabel.frame.height
}

从该函数您将收到 UILabel 的高度,然后您可以简单地向您的注释高度添加它需要的任何填充或边距。

关于ios - Swift 4 - PDFAnnotation 文本(或 UITextField)为文本大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57114909/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com