我已经在我的iOS应用程序中实现了一个文本字段,现在我想要一个不同的文本段落形式。
我在论坛中找到了使用以下代码的建议:
var temp:String = "Hello World"
let attrsBold = [NSFontAttributeName : UIFont.boldSystemFont(ofSize: 15)]
let txTeam1 = NSMutableAttributedString(string: temp, attributes: attrsBold)
现在发生的是,文本未格式化,但在文本字段中使用以下信息编写:
HelloWorld {NSFont =“font-familiy: \“。SFUIText-Semibold \”; font-weight:bold; font-style:normal; font-size:15.00pt“;}
文本设置为文本字段,如下所示:
textBericht.text = gameResult[0].bericht
变量gameResult由函数写入:
gameResult = game.calculateGame(basic: gameBasic)
我做错了什么?看来应用程序并没有在" Hello World"。
之后解释文本答案 0 :(得分:1)
您必须使用
设置文本textBericht.attributedText = temp