无法将数字显示为来自解析的字符串

时间:2015-08-06 07:23:56

标签: swift parse-platform

我有这个代码,我试图在标签中显示一些文字

let CellData:PFObject = self.data.objectAtIndex(indexPath.row) as! PFObject
cell.titleLabel!.text = CellData.objectForKey("Title") as? String

对象Title是Parse.com数据库中的字符串

但是,当我尝试使用此代码为数字执行此操作时,

cell.fundsLabel!.text = CellData.objectForKey("FundsNeeded") as? String

使用此代码

打印值
println(CellData.objectForKey("FundsNeeded"))

如何在标签中显示数字?

2 个答案:

答案 0 :(得分:0)

尝试

cell.fundsLabel!.text = String(CellData.objectForKey("FundsNeeded"))

答案 1 :(得分:0)

试试这个:

var fundsNeedStringInt = CellData.objectForKey("FundsNeeded") as? Int
cell.fundsLabel!.text = "\(fundsNeedStringInt)"