gpt4 book ai didi

ios - 解析/PFQueryTableView : Append extra text to an object in parse

转载 作者:可可西里 更新时间:2023-11-01 01:02:50 25 4
gpt4 key购买 nike

如何在解析对象的文本之前或之后附加文本或空格。

我想在一个对象中的任何文本前添加#。

  cell.TextLabel.text = object?.objectForKey("Hashtag") as? String

当我尝试这样做时出现错误:

cell.TextLabel.text = "# " + object?.objectForKey("topic") as? String

无需解析,我可以简单地添加它而不会出现任何错误:

cell.TextLabel.text = " # " + test[indexpath.row]

最佳答案

问题是你试图连接一个字符串?用一个字符串。就这样做:

cell.TextLabel.text = "# " + (object?.objectForKey("topic") as! String)

或更好

cell.TextLabel.text = "# " + (object?.objectForKey("topic") as? String ?? "")

关于ios - 解析/PFQueryTableView : Append extra text to an object in parse,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34054850/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com