从NSAttributedString

时间:2018-05-20 09:19:10

标签: swift nsattributedstring rtf nsrange

假设我已从文件(html或rtf)中读取NSAttributedString,并且在该文件中我清楚地看到了几个表格。有没有办法提取这些表或至少找到与表对应的NSRange?如果我能以某种方式从NSTextTableBlock中提取NSTextTableNSTextBlockNSAttributedString,那将是理想的选择。但如果那是不可能的,那么至少应该有办法找到表格单元的NSRanges或类似的东西。 Swift(可能是4)是首选,但是obj-c也很好。

例如想象一下这样的场景:

let html =
"""
<table style="height: 51px;" width="147">
    <tbody>
        <tr>
            <td style="width: 65.5px;">a</td>
            <td style="width: 65.5px;">b</td>
        </tr>
        <tr>
            <td style="width: 65.5px;">c</td>
            <td style="width: 65.5px;">d</td>
        </tr>
    </tbody>
</table>
"""
var str = NSAttributedString(html: html.data(using: .utf8)!,    options: [:], documentAttributes: nil)!

然后我想做或多或少的事情:

for table in str{
    for row in table{
        for cell in row{
            //do something
        }
    }
}

1 个答案:

答案 0 :(得分:0)

我发现这个问题有点天真的解决方案,但它确实有效。您基本上遍历NSAttributedString中的所有字符,查询它们的属性,然后检查它们中是否是带有表的NSParagraphStyle。

这段代码从给定位置提取NSTextTable数组(记住表可以嵌套)

extension NSAttributedString{

func paragraphStyle(at index:Int)->NSParagraphStyle?{
    let key = NSAttributedStringKey.paragraphStyle
    return attribute(key, at: index, effectiveRange: nil) as! NSParagraphStyle?
}
func textBlocks(at index:Int)->[NSTextBlock]?{
    return paragraphStyle(at: index)?.textBlocks
}
func tables(at index:Int)->[NSTextTable]?{
    guard let tbs = textBlocks(at: index) else{
        return nil
    }
    var output = Set<NSTextTable>()
    for tb in tbs{
        if let t = tb as? NSTextTableBlock{
            output.insert(t.table)
        }
    }
    return Array(output)
}

}

这可以帮助你收集所有表(嵌套表除外 - 为了收集它们,你必须在每个表中递归地运行这个函数):

extension NSAttributedString{

var outterTables:[NSTextTable]{
    var index = 0
    let len = length
    var output:[NSTextTable] = []
    while index < len{
        if let tab = outterTable(at: index){
            output.append(tab)
            index = range(of: tab, at: index).upperBound
        }else{
            index += 1
        }
    }
    return output
}

}