在swift 3中更改图标位置
Posted
技术标签:
【中文标题】在swift 3中更改图标位置【英文标题】:Change icon position in swift 3 【发布时间】:2017-11-29 21:28:38 【问题描述】:我有以下代码,它在 uilabel 的左侧显示一个图标,我的问题是如何将图标放在 uilabel 的右侧:
let attachment = NSTextAttachment()
attachment.image = UIImage(named: "ic_person")
attachment.bounds = CGRect(x: 0, y: -3, width: 15, height: 15)
let attachmentStr = NSAttributedString(attachment: attachment)
let myString = NSMutableAttributedString(string: "")
myString.append(attachmentStr)
let myString1 = NSMutableAttributedString(string: item_empresa[indexPath.item].nombre_emp!)
myString.append(myString1)
cell.lbl_nombreEmpresa.attributedText = myString
提前致谢
【问题讨论】:
【参考方案1】:您可以通过在附加文本本身后附加附件来将图像放在文本之后
let attachment = NSTextAttachment()
attachment.image = UIImage(named: "ic_person")
attachment.bounds = CGRect(x: 0, y: -3, width: 15, height: 15)
let attributedString = NSMutableAttributedString(string: item_empresa[indexPath.item].nombre_emp ?? "")
attributedString.append(NSAttributedString(attachment: attachment))
cell.lbl_nombreEmpresa.attributedText = attributedString
【讨论】:
我的朋友我怎样才能改变我的图像的颜色? @DiegoIsraelMoreno 我在github 上为您创建了这个 UIImage 扩展,只需添加文件并像这样使用它image.with(color: .white)
我有这个调用'with(color:)'的警告结果是未使用的
你是不是先从 GitHub 添加文件
是的,名称为 UIImage.swift以上是关于在swift 3中更改图标位置的主要内容,如果未能解决你的问题,请参考以下文章
如何在Android的谷歌地图片段中更改默认的蓝色圆形位置图标?
更改 Flex Spark ButtonBar 控件的标签和图标位置