NSMutableAttributedString用于从String中为NSTextView添加下标(上标)

时间:2016-12-06 22:54:51

标签: swift string append nstextview nsmutableattributedstring

是否存在在普通String中附加NSMutableAttributedString的方法?

我想在NSTextView中添加文字。这个特殊的文本(String)有来自Double()变量的引用,我想添加一些上下索引(下标和上标)。

它是结构工程师的数学软件,输出是多行的大文本,我想知道,如果有更简单或直接的方法如何添加这个索引(A = 5 m2(米平方))。

我不能强制使用数字下标字体字符(因为在某些情况下需要有偶数字母或符号子字母/ forced₉₉₉₉₉₉₉₉₉₉₉₉₉₉₉₉₉₉₉₉₉₉₉₉₉₉₉₉₉₉₉₉₉₉₉₉₉₉₉₉₉₉₉₉₉₉₉₉上标。

我想知道是否存在如何创建此类属性字符串并添加到文本容器的方法。

PS:我已经检查了这些答案(Swift 3.0 convert Double() to NSMutableAttributedString)但我在String中使用它时遇到了麻烦,例如这个例子中的引用:

var x = Double()
var y = Double()
var z = Double()
x = 10
y = 5

z = x * y  // = 50
var str = String()
str = "Random text for example porpoises:\n\nHere comes calculation part\n\nA1 = \(z) m2"

print(str)
//Random text for example porpoises:
//
//Here comes calculation part
//
//A1 = 50 m2

//"1" in "A1" should be subscripted (A_1)
//"2" in "m2" should be superscripted (m^2)

我想知道如何添加这些子和上标并将此归因字符串放到NSTextView

1 个答案:

答案 0 :(得分:3)

我建议使用标准NSAttributedStringNSBaselineOffsetAttributeName。看看我刚刚放在一起的例子:

override func viewDidLoad() {
    super.viewDidLoad()

    let label = NSTextView(frame: CGRect(x: 20, y: 20, width: 100, height: 30))
    let str = "A1 = 50 m2"

    let aString = NSMutableAttributedString(string: str)

    let myFont = NSFont(name: label.font!.fontName, size: 10.0)
    let subscriptAttributes: [String : Any] = [ NSBaselineOffsetAttributeName: -5, NSFontAttributeName:  myFont! ]
    let superscriptAttributes: [String : Any] = [ NSBaselineOffsetAttributeName: 5, NSFontAttributeName:  myFont! ]

    aString.addAttributes(subscriptAttributes, range: NSRange(location: 1, length: 1))
    aString.addAttributes(superscriptAttributes, range: NSRange(location: 9, length: 1))

    // Kerning adds a little spacing between all the characters.
    aString.addAttribute(NSKernAttributeName, value: 1.5, range: NSRange(location: 0, length: 2))
    aString.addAttribute(NSKernAttributeName, value: 1.5, range: NSRange(location: 8, length: 2))


    label.textStorage?.append(aString)

    view.addSubview(label)
}

结果如下:

enter image description here