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> 展开
<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> 展开
3个回答
展开全部
额。。。在网上直接找个解析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;
}
在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;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询