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

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"))

如何获取要在标签中显示的编号?

最佳答案

尝试

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

09-25 22:14