SearchTextField从左到右显示列表

时间:2017-07-31 07:59:13

标签: ios swift3 xcode8

我正在使用SearchTextField pod来显示预测文本。

https://github.com/apasccon/SearchTextField

以下代码使用显示列表构建表。

process.env.npm_package_version

得到一个匹配标题列表作为标签,可以看到图像

enter image description here

所以我的问题是如何让我的标签从右到左显示数据?

感谢您提供的任何帮助

1 个答案:

答案 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文件。