2010-02-09 87 views

回答

0

這是一個非常普遍的問題。通過提出更具體的關於你想要完成的事情,你可能會得到更多的答案。開發人員比實現更多的是實現。也許你可以在這種情況下重新提出你的問題?我確信你有一些想法。爲什麼不分享他們?

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; 
+0

這就是你要以正確落得什麼? http://www.iphonesdkarticles.com/2009/01/uitableview-searching-table-view.html 該教程看起來相當完整,我認爲最終會得到你想要的,儘管我沒有經過它廣泛地。 – 2010-02-09 22:06:36