gpt4 book ai didi

ios - 在 cellForRowAtIndexPath 中将 UIButton 视为 UILabel

转载 作者:搜寻专家 更新时间:2023-11-01 06:21:03 25 4
gpt4 key购买 nike

如何在cellForRowAtIndexPath中把UIButton当成UILabel,我想在cellForRowAtIndexPath中调用它作为UILabel。

我收到这个错误:

cannot assign value of of type String to type UIButton

我正在使用 PFQueryTableViewController。

 cell.cityButton = object?.objectForKey("City") as? String

cell.locationLabel.text = object?.objectForKey("eventLocation") as? String

最佳答案

您试图将 cityButton 设置为(可选)String,这显然不起作用。相反,您想将按钮的标题设置为该字符串。试试这个:

cell.cityButton.setTitle(object?.objectForKey("City") as? String forState: .Normal)

关于ios - 在 cellForRowAtIndexPath 中将 UIButton 视为 UILabel,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34120648/

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