サービス URL から読み込まれる画像をロードする必要がありNSMutableArray
ます。XML 応答から画像タグを取得できます。UITableViewCell
私の配列は次のようになります:
(
{
Image="46b6daca-3.png";
}
{
Image="9251bfe5-d.jpg";
}
)
各画像を個別にロードするにはどうすればよいUITableViewCell
ですか?
UILabel を作成するために、私はそれが次のようであることを知っていました:
NSMutableDictionary *d = (NSMutableDictionary *) [arr objectAtIndex:indexPath.row];
UILabel *line1=[[UILabel alloc]initWithFrame:CGRectMake(10, 68, 320,10)];
line1 .font=[UIFont fontWithName:@"arial" size:12];
[line1 setTextAlignment:UITextAlignmentLeft];
[line1 setText:[d valueForKey:@"Name"]];
line1.tag=113;
[cell addSubview:line1 ];
[line1 release];
どうすればUIImageにできますか?