HTML5   发布时间:2022-04-27  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了ios – 使字符串的一部分与搜索字符串匹配大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个项目表,每个项目都有一个标签.我还有一个搜索栏,用于根据mySearchBar.text是myLabel.text的子字符串来过滤表中的项目.

这一切都运行正常,但我想加粗与搜索字符串匹配的标签文本部分.

最终产品类似于谷歌地图搜索.

ios – 使字符串的一部分与搜索字符串匹配

@H_674_15@解决方法
Swift 4:XCode 9.x

private func filterAndModifyTextAttributes(searchStringCharacters: String,completeStringWithAttributedText: String) -> NSMutableAttributedString {

    let attributedString: NSMutableAttributedString = NSMutableAttributedString(String: completeStringWithAttributedText)
    let pattern = searchStringCharacters.lowercased()
    let range: NSRange = NsmakeRange(0,completeStringWithAttributedText.characters.count)
    var regex = NSRegularExpression()
    do {
        regex = try NSRegularExpression(pattern: pattern,options: NSRegularExpression.options())
        regex.enumerateMatches(in: completeStringWithAttributedText.lowercased(),options: NSRegularExpression.MatchingOptions(),range: rangE) {
            (textcheckingResult,matchingFlags,stop) in
            let subRange = textcheckingResult?.range
            let attributes : [NSAttributedStringKey : Any] = [.font : UIFont.boldSystemFont(ofSize: 17),.foregroundColor: UIColor.red ]
            attributedString.addAttributes(attributes,range: subRange!)
        }
    }catch{
        print(error.localizedDescription)
    }
    return attributedString
}
func tableView(_ tableView: UITableView,cellForRowAt indexPath: IndexPath) -> UITableViewCell {
     let cell = UITableViewCell(style: .subtitle,reusEIDentifier: "Cell")
     cell.textLabel?.attributedText = self.filterAndModifyTextAttributes(searchStringCharacters: self.textFromSearchBar,completeStringWithAttributedText: searchResultString)
     return cell

}

ios – 使字符串的一部分与搜索字符串匹配

大佬总结

以上是大佬教程为你收集整理的ios – 使字符串的一部分与搜索字符串匹配全部内容,希望文章能够帮你解决ios – 使字符串的一部分与搜索字符串匹配所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。