如何使用 indexpath 进行 xml 解析
Posted
技术标签:
【中文标题】如何使用 indexpath 进行 xml 解析【英文标题】:how to use indexpath for xml parsing 【发布时间】:2012-11-21 08:02:18 【问题描述】:我正在使用 xml 解析器将数据从一个视图传递到另一个视图。当我单击任何行时(在视图上加载 xml 之后),它应该相应地显示整个详细信息。 - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath: (NSIndexPath *)indexPath
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
UILabel *titleLabel = nil;
UILabel *priceLabel = nil;
UILabel *titleValueLabel = nil;
UILabel *priceValueLabel = nil;
if (cell == nil)
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
titleLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 320, 20)];
titleLabel.text = @"Model:";
priceLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 20, 50, 20)];
priceLabel.text = @"Price:";
priceValueLabel = [[UILabel alloc] initWithFrame:CGRectMake(120, 20, 50, 20)];
titleValueLabel = [[UILabel alloc]initWithFrame:CGRectMake(120, 1, 320, 20)];
[cell.contentView addSubview:titleLabel];
[cell.contentView addSubview:priceLabel];
[cell.contentView addSubview:titleValueLabel];
[cell.contentView addSubview:priceValueLabel];
NSDictionary *tempProduct = [self.listData objectAtIndex:indexPath.row];
NSDictionary *productTitle = [tempProduct valueForKey:TITLE];
NSString *titleValue = [productTitle valueForKey:TEXT];
titleValue = [titleValue stringByTrimmingCharactersInSet:
[NSCharacterSet whitespaceAndNewlineCharacterSet]];
titleValueLabel.text = titleValue;
[cell.contentView addSubview:titleValueLabel];
NSDictionary *productPrice = [tempProduct valueForKey:PRICE];
NSString *priceValue = [productPrice valueForKey:TEXT];
priceValue = [priceValue stringByTrimmingCharactersInSet:
[NSCharacterSet whitespaceAndNewlineCharacterSet]];
priceValueLabel.text = priceValue;
[cell.contentView addSubview:priceValueLabel];
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
return cell;
我的示例 xml 数据是
<?xml version="1.0" encoding="UTF-8"?>
<scan>
<products>
<title>samsung galaxy</title>
<desc>smart phone</desc>
<price>250$</price>
</products>
<products>
<title>samsung galaxy1</title>
<desc>smart phone1</desc>
<price>251$</price>
</products>
<products>
<title>samsung galaxy2</title>
<desc>smart phone2</desc>
<price>252$</price>
</products>
<products>
<title>samsung galaxy3</title>
<desc>smart phone3</desc>
<price>350$</price>
</products>
</scan>
当我点击第一行时,它应该显示相同的数据。但它是按选择的顺序显示的。 如何解决这个问题?
【问题讨论】:
你有对象的数组...? 没有。我没有。 @nitin gohel 请阅读我的答案,我只是更改您问题的代码,然后将您复制并粘贴到 cellforrowAtindexpath 中作为我的答案 【参考方案1】:你可以像这样传递索引
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath: (NSIndexPath *)indexPath
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil)
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
NSDictionary *tempProduct = [self.listData objectAtIndex:indexPath.row];
titleLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 320, 20)];
[Name setText:[tempProduct valueForKey:@"TITLE"]];
priceLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 20, 50, 20)];
[Name setText:[tempProduct valueForKey:@"Price"]];
priceValueLabel = [[UILabel alloc] initWithFrame:CGRectMake(120, 20, 50, 20)];
titleValueLabel = [[UILabel alloc]initWithFrame:CGRectMake(120, 1, 320, 20)];
[cell.contentView addSubview:titleLabel];
[cell.contentView addSubview:priceLabel];
//[cell.contentView addSubview:titleValueLabel];
// [cell.contentView addSubview:priceValueLabel];
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
return cell;
编辑
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
NSDictionary *tempProduct = [self.listData objectAtIndex:indexPath.row];
objAppDelegate.strCatagoryTitle=[tempProduct valueForKey:@"TITLE"];
objAppDelegate.strCatagoryPrice=[tempProduct valueForKey:@"Price"];
//hear objAppDelegate.strCatagoryTitle or objAppDelegate.strCatagoryPrice globle string.
//we can use it at our cntrSecondViewController class using this Delegate object
//objAppDelegate = (cntrAppDelegate1 *) [[UIApplication sharedApplication]delegate];
cntrSecondViewController *cntrinnerService = [[cntrSecondViewController alloc] initWithNibName:@"cntrSecondViewController" bundle:nil];
[self.navigationController pushViewController:cntrinnerService animated:YES];
【讨论】:
上面的代码工作了。谢谢:) 但是在第一次点击之后,它不会去任何地方。当我第二次点击时,它会进入第一次点击后必须显示的选项。 请检查您是否选择了委托方法 上面的代码正在运行,但是除非选择了任何其他行,否则选择的第一行没有做任何事情。它正在显示前一行的数据。如何解决这个问题?@ nitin Gohel 您是在推送视图还是在选择特定行时...? 让我们continue this discussion in chat以上是关于如何使用 indexpath 进行 xml 解析的主要内容,如果未能解决你的问题,请参考以下文章