我有这个代码,我试图在标签中显示一些文字
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"))
如何在标签中显示数字?
答案 0 :(得分:0)
尝试
cell.fundsLabel!.text = String(CellData.objectForKey("FundsNeeded"))
答案 1 :(得分:0)
试试这个:
var fundsNeedStringInt = CellData.objectForKey("FundsNeeded") as? Int
cell.fundsLabel!.text = "\(fundsNeedStringInt)"