我想更改NSTextView
中第一行文本的格式(给它一个不同的字体大小和重量,使其看起来像一个标题)。因此,我需要第一行的范围。一种方法是:
guard let firstLineString = textView.string.components(separatedBy: .newlines).first else {
return
}
let range = NSRange(location: 0, length: firstLineString.count)
但是,我可能正在使用相当长的文本,因此当我需要的是第一行组件时,首先将整个字符串拆分为行组件似乎是低效的。因此,使用firstIndex(where:)
方法似乎是有道理的:
let firstNewLineIndex = textView.string.firstIndex { character -> Bool in
return CharacterSet.newlines.contains(character)
}
// Then: Create an NSRange from 0 up to firstNewLineIndex.
这不起作用,我收到一个错误:
无法将'
(Unicode.Scalar) -> Bool
'类型的值转换为预期参数类型'Character
'
因为contains
方法不接受Character
而是接受Unicode.Scalar
作为参数(这对我来说真的没有意义,因为它应该被称为UnicodeScalarSet
而不是CharacterSet
,但是没关系......)。
我的问题是:
(它不一定要使用firstIndex(where:)
方法,但似乎是要走的路。)
String.Index
第一行的string
范围可以用
let range = string.lineRange(for: ..<string.startIndex)
如果你需要那个作为NSRange
然后
let nsRange = NSRange(range, in: string)
诀窍。
您可以使用rangeOfCharacter
,它返回字符串中集合中第一个字符的Range<String.Index>
:
extension StringProtocol where Index == String.Index {
var partialRangeOfFirstLine: PartialRangeUpTo<String.Index> {
return ..<(rangeOfCharacter(from: .newlines)?.lowerBound ?? endIndex)
}
var rangeOfFirstLine: Range<Index> {
return startIndex..<partialRangeOfFirstLine.upperBound
}
var firstLine: SubSequence {
return self[partialRangeOfFirstLine]
}
}
您可以像这样使用它:
var str = """
some string
with new lines
"""
var attributedString = NSMutableAttributedString(string: str)
let firstLine = NSAttributedString(string: String(str.firstLine))
// change firstLine as you wish
let range = NSRange(str.rangeOfFirstLine, in: str)
attributedString.replaceCharacters(in: range, with: firstLine)