I have a JSON file:
{
"items": [
{
"id": "HkWO1yuYnLU",
"snippet": {
"channelId": "UCR5wZcXtOUka8jTA57flzMg",
"title": "İlyas Yalçıntaş - İçimdeki Duman",
"categoryId": "10"
},
"statistics": {
"viewCount": "37266431",
"likeCount": "122255",
"dislikeCount": "4472",
"favoriteCount": "0",
"commentCount": "7151"
}
}
]
}
and i want to get this info, like this:
label1.text = "Rap GOD"
label2.text = "122255 likes"
how do i do it?

