gpt4 book ai didi

objective-c - 为 TextEditor 添加边距

转载 作者:行者123 更新时间:2023-12-05 03:32:57 26 4
gpt4 key购买 nike

我正在为 TextEditor 添加边距。同时将这些边距保持为可点击区域。我能够添加 textContainerInset,但问题是添加的 Inset 不可点击。

当前代码:

extension NSTextView {
open override var frame: CGRect {
didSet {
textContainerInset = CGSize(width: 72, height: 72)
}
}
}

当前预览:

预期行为(页面):

非常感谢您的建议。非常感谢!

最佳答案

所以我找到了一个简单又困难的解决方案。

<强>1。简单的

    import SwiftUI


extension NSTextView {
open override var frame: CGRect {
didSet {
// Top inset
textContainerInset = NSSize(width: 0, height: 72)
// Left fragment padding <<< This is what I was looking for
textContainer?.lineFragmentPadding = 72
}
}
}


struct TextEditingView: View {
@State private var fullText: String = "One \nTwo \nThree"


var body: some View {
TextEditor(text: $fullText)
.frame(width: 720, height: 480)
.font(.system(size: 24, design: .monospaced))


}

}

结果你得到这个: TextEditor with margins on left

演示的存储库: https://github.com/yaosamo/Swift-TextView-Demo

<强>2。第二种方案

使用 NSParagraphStyle、headIndent、firstLineHeadIndent我相信这就是 Mac 上 Pages 的缩进实现方式。我不知道他们如何坚持默认缩进。如果你打开标尺,你会看到它设置为 1,你不能低于它。

使用代码 (AppKit) Tab insertion inside of NSTextBlock

class ParagraphStyle {

let bgColor: NSColor
let paragraphStyle: NSParagraphStyle

init(bgColor: NSColor) {
self.bgColor = bgColor
//Set paragraph style
self.paragraphStyle = {
let mutableParagraphStyle = NSMutableParagraphStyle()
let specialBlock = CustomTextBlock(bgColor: bgColor)
mutableParagraphStyle.textBlocks.append(specialBlock)
mutableParagraphStyle.headIndent = 50 // Add indent here
let style = mutableParagraphStyle as NSParagraphStyle
return style
}()
}}

您可以将 headIndent 添加到文本样式中。它适用于您插入的副本。就像我说的问题,如果你开始输入缩进中断,我不知道如何保留它。

第一个完全符合我的要求。接下来会搞清楚headIndent/FirSTLineheadIndent的使用方法

多亏了这个社区,我才能找到解决方案!不放弃你也能成功! :D

关于objective-c - 为 TextEditor 添加边距,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70398075/

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