非常简单,但适合 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)
希望能帮助到你。