我曾经使用过编辑器。 https://www.tinymce.com/
但是,不幸的是我需要删除一些默认工具,如(文件,编辑等)。
答案 0 :(得分:1)
您可以删除下面的菜单
let attributedStringArray = components.map{ item -> NSAttributedString? in
guard let range = notAttributedString.lowercased().range(of:item) else {
return nil
}
let nsRange = notAttributedString.nsRange(fromRange: range)
return attributedString.attributedSubstring(from: nsRange)
}.flatMap{$0}