在iPad应用程序中显示来自JSON的数据表

时间:2016-07-23 09:38:22

标签: ios json ipad

我有一个返回JSON的API:

{
    "id": 1,
    "name": "A green door",
    "price": 12.50,
    "tags": ["home", "green"]
}

{
    "id": 2,
    "name": "A blue door",
    "price": 13.50,
    "tags": ["work", "blue"]
}

在iPad应用中,我需要以下列数据表格式显示:

id    name          price     tags
1     A green door  12.50     home, green
2     A blue door   13.50     work, blue

我尝试了以下https://github.com/brightec/CustomCollectionViewLayout,但它不起作用。

怎么做?

1 个答案:

答案 0 :(得分:1)

您可以创建一个简单的表格视图。我用你的数据创建了一个简单的例子。抱歉,我没有时间添加评论,用户界面是基本的 请检查以下示例: Show data into table view