我正在尝试本地化我的应用,但是在尝试对表格视图单元格中的内容进行本地化时遇到问题。
我将所有数据存储在CoreData
中,并且当我尝试向用户显示时,单元格翻译不起作用。也许有人可以帮我吗?
if mainList[indexPath.row].value(forKeyPath: "amount") as! Int == 1{
cell.descriptionLabel.text = NSLocalizedString("Your time is \(mainList[indexPath.row].value(forKeyPath: "time") as! Date)", comment: "Test")
}