Вы можете попробовать, я думаю, у вас есть данные этого JSON
do {
var json = try JSONSerialization.jsonObject(with: data!, options: .allowFragments) as? [String:Any]
if let current = json["lifeTimeStats"] as? [Any] {
if let Key_value = current[0] as? [String : Any] {
if let Score_String = Key_value["key"] as? String {
self.Score.text = Score_String
}
}
}
}
catch let err as NSError {
print(err)
}