iphone 开发,读下面的xml文件,怎么获取ImageURL到并加载到TableView里?

<?xmlversion="1.0"encoding="UTF-8"?><ProductSet><Product><ProductID>1</ProductID><Ico... <?xml version="1.0" encoding="UTF-8"?>

<ProductSet>
<Product>
<ProductID>1</ProductID >
<IconCount>3</IconCount>
<IconList>
<ImageURL><![CDATA[MagicFriday.png]]></ImageURL>
<ImageURL><![CDATA[Customized.png]]></ImageURL>
<ImageURL><![CDATA[HH.jpg]]></ImageURL>
</IconList>
</Product>
</ProductSet>
展开
 我来答
冷静且清冽的小布丁9482
2011-11-25
知道答主
回答量:30
采纳率:0%
帮助的人:11.8万
展开全部
额。。。在网上直接找个解析XML的封装好的类,导入,然后按照XML格式一步步解析就行啦,然后生成一个NSMutableArray 类型的array,保存数据。
在viewController里
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return [array count]
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
NSString *identifier = @"myCell";
UItableViewCell *cell = (UItableViewCell *)[tableView dequeueReusableCellWithIdentifier:identifier];
if (cell == nil)
{
cell = [[[UItableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:identifier] autorelease];
}
cell.textLabel.text = [array objectAtIndex:indexPath.row];
return cell;
}
1037680875
2011-11-20
知道答主
回答量:1
采纳率:0%
帮助的人:1693
展开全部
URL椿树
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
A_bomb
2011-11-25
知道答主
回答量:16
采纳率:0%
帮助的人:8445
展开全部
楼上的正解
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式