当前位置 : 主页 > 手机开发 > 其它 >

swift – NSAttributedString获取超出范围的属性异常

来源:互联网 收集:自由互联 发布时间:2021-06-11
我正在尝试从属性字符串中获取属性.除非字符串为空,否则一切正常.看一看: let s = NSAttributedString(string: "", attributes: [NSForegroundColorAttributeName: UIColor.red])let range = NSMakeRange(0, s.length)let
我正在尝试从属性字符串中获取属性.除非字符串为空,否则一切正常.看一看:

let s = NSAttributedString(string: "", attributes: [NSForegroundColorAttributeName: UIColor.red])
let range = NSMakeRange(0, s.length)
let attrs = s.attributes(at: 0, longestEffectiveRange: nil, in: range)

为什么我在最后一行超出界限?

这是预期的结果.如果字符串的长度为0(“”的情况),它在索引0处没有字符,因此当您尝试使用s.attributes访问它时,您应该得到一个越界异常.

由于索引从0开始,因此仅对String.length> 0存在index = 0.

您可以使用长度为1的字符串并在s.attributes中输入1来轻松检查.

let s = NSAttributedString(string: "a", attributes: [NSForegroundColorAttributeName: UIColor.red])
let range = NSMakeRange(0, s.length)
let attrs = s.attributes(at: 1, longestEffectiveRange: nil, in: range)    //also produces out of bounds error
网友评论