NSXMLParser带有搜索栏

时间:2010-02-09 15:05:37

标签: iphone nsxmlparser uisearchbar

我试图找到一些用于使用搜索栏创建XML解析器的资源。 有什么想法吗?

非常感谢

2 个答案:

答案 0 :(得分:0)

这是一个非常普遍的问题。通过询问更具体的关于你想要完成的事情,你可能会得到更多答案。开发人员更多的是实现而不是设计。也许你可以在这种背景下改写你的问题?我相信你有一些想法。为什么不分享它们?

答案 1 :(得分:0)

感谢您的建议。 我有一个带有xml文件的uisearchbar的tableview。 上面的代码用NSURL显示它,但我不能用parseXMLFileAtURL来做。

我找到了一个很好的教程(用法语)来解析XML文件,但我不能添加一个搜索栏。 我想找一个混合xml解析和搜索栏的教程。

谢谢

NSURL *url = [NSURL URLWithString:@"http://www.....fr/file.xml"];
NSArray *gamesToLiveInArray = [NSArray arrayWithContentsOfURL:url];
NSLog(@"%@", [gamesToLiveInArray description] );


NSDictionary *gamesToLiveInDict = [NSDictionary dictionaryWithObject:gamesToLiveInArray forKey:@"title"];

[listOfItems addObject:gamesToLiveInDict];

//copy du tableau
copyListOfItems = [[NSMutableArray alloc] init];

//titre
self.navigationItem.title = @"Recherche";

//ajoute la searchbar
self.tableView.tableHeaderView = searchBar;
searchBar.autocorrectionType = UITextAutocorrectionTypeNo;

searching = NO;
letUserSelectRow = YES;