您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
通过NSAttributedString创建富文本字符串可以使用以下方法:
let attributes: [NSAttributedString.Key: Any] = [
.font: UIFont.systemFont(ofSize: 16),
.foregroundColor: UIColor.red,
.paragraphStyle: NSMutableParagraphStyle()
]
let attributedString = NSAttributedString(string: "Hello, World!", attributes: attributes)
let attributedString = NSMutableAttributedString(string: "Hello, World!")
attributedString.addAttribute(.font, value: UIFont.systemFont(ofSize: 16), range: NSRange(location: 0, length: 5))
attributedString.addAttribute(.foregroundColor, value: UIColor.red, range: NSRange(location: 7, length: 6))
let attributedString = NSMutableAttributedString(string: "Visit our website for more information.")
let linkRange = (attributedString.string as NSString).range(of: "website")
attributedString.addAttribute(.link, value: URL(string: "http://www.example.com")!, range: linkRange)
以上是一些常见的创建富文本字符串的方法,根据需求可以灵活组合使用。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。