0

ここに画像の説明を入力

JSON フィードから複数 (3 ~ 4 個) のアイテムを読み込んでいます (数は日によって異なります)。各アイテムには、icon、title、subtitle、および large_image の 4 つの属性があります。最初のアイテムを解析して表示した後、次のアイテムを表示したいと考えています。

私の質問は: フィード内の各項目について、UITableViewCell を次のようにカスタマイズできますか? もしそうなら、どうすればいいですか?google/stackoverflow 検索で、アイコン画像 + タイトル + サブタイトルをカスタム セルで行う方法を見てきましたが、大きな画像を組み込む方法については何も知りませんでした。

カスタム UITableView でない場合、これを有効にするにはどうすればよいですか? フィード内の項目数に基づいて動的にレンダリングする個別の UILabels と 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 に答える