0

在此处输入图像描述

我正在从 JSON 提要加载多个 (3-4) 项(数量会因日期而异)。每个项目将有 4 个属性:icon、title、subtitle 和 large_image。解析并显示第一项后,我希望显示下一项。

我的问题是:我可以为提要中的每个项目定制一个 UITableViewCell 看起来像这样吗?如果是这样,我该怎么做?通过 google/stackoverflow 搜索,我看到了如何在自定义单元格中执行图标图像 + 标题 + 副标题,但也没有关于如何合并大图像。

如果不是自定义 UITableView,我该如何启用它?我是否制作了根据提要中的项目数量动态呈现的单个 UILabel 和 UIImageView?

谢谢!

4

2 回答 2

0

非常简单,但适合 iOS 初学者。

以下是步骤:

Create a xib file (which should be a subclass of UITableViewCell. Drag and drop 2 UILabels, and place it how you want for each row. Drag and drop 2 imageviews as well. One should be for icon, (preferably smaller in size) and other one should depict the large image. 

In `cellForRowAtIndexPath method of tableview, try to load the custom cell object and pass the values you have in json parsed array (formatted array containing data for each row). Update your cell UI in cellforRowAtIndexPath.` 

点击这里-this is something which best fits your issue, you can customize more according to your need. (add label, largeimageview)

希望能帮助到你。

于 2013-02-12T06:06:58.880 回答
0

您正在寻找自定义的 uitableviewcell。这个问题已经在这里问过了,也有一个教程链接。从一个简单的例子开始。

于 2013-02-12T06:09:39.463 回答