0
私はJSONを返すAPIがあります。表示データテーブル
id name price tags
1 A green door 12.50 home, green
2 A blue door 13.50 work, blue
I:、私は次のようなデータテーブル形式でこれを表示する必要がiPadアプリで
{
"id": 1,
"name": "A green door",
"price": 12.50,
"tags": ["home", "green"]
}
{
"id": 2,
"name": "A blue door",
"price": 13.50,
"tags": ["work", "blue"]
}
を次のように試してみましたhttps://github.com/brightec/CustomCollectionViewLayoutしかし動作しません。
どうすればできますか?
https://www.cocoacontrols.com/search?q=table –