ios – 归因于两个文本对齐的文本

ios – 归因于两个文本对齐的文本,第1张

概述有谁知道如何在一个字符串中实现两个不同的文本对齐? 这就是我想要textView显示的内容: label value 我的代码: let txtView = cell.viewWithTag(77) as! UITextViewlet leftStyl 有谁知道如何在一个字符串中实现两个不同的文本对齐

这就是我想要textVIEw显示的内容:

label                                                                         value

我的代码:

let txtVIEw = cell.vIEwWithTag(77) as! UITextVIEwlet leftStyle = NSMutableParagraphStyle()leftStyle.alignment = NSTextAlignment.leftlet rightStyle = NSMutableParagraphStyle()rightStyle.alignment = NSTextAlignment.Rightlet attText = NSMutableAttributedString(string: "label",attributes: [NSParagraphStyleAttributename: leftStyle])attText.appendAttributedString(NSAttributedString(string: " "))attText.appendAttributedString(NSAttributedString(string: "value",attributes: [NSParagraphStyleAttributename: rightStyle]))txtVIEw.attributedText = attText

我得到的是:

label value

任何帮助表示赞赏! 总结

以上是内存溢出为你收集整理的ios – 归因于两个文本对齐的文本全部内容,希望文章能够帮你解决ios – 归因于两个文本对齐的文本所遇到的程序开发问题。

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

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1008029.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-22
下一篇 2022-05-22

发表评论

登录后才能评论

评论列表(0条)

保存