我正在使用SearchTextField pod来显示预测文本。
https://github.com/apasccon/SearchTextField
以下代码使用显示列表构建表。
process.env.npm_package_version
得到一个匹配标题列表作为标签,可以看到图像
所以我的问题是如何让我的标签从右到左显示数据?
感谢您提供的任何帮助
答案 0 :(得分:0)
如果查看框架,可以设置
cell!.detailTextLabel?.textAlignment = .right
cell!.textLabel?.textAlignment = .right
cell!.textLabel?.text = filteredResults[(indexPath as NSIndexPath).row].title
cell!.detailTextLabel?.text = filteredResults[(indexPath as NSIndexPath).row].subtitle
cell!.textLabel?.attributedText = filteredResults[(indexPath as NSIndexPath).row].attributedTitle
cell!.detailTextLabel?.attributedText = filteredResults[(indexPath as NSIndexPath).row].attributedSubtitle
cell!.imageView?.image = filteredResults[(indexPath as NSIndexPath).row].image
cell!.selectionStyle = .none
来自pods的SearchTextField.swift文件。