我需要以下代碼的幫助,我使用hpple來解析html。 我需要幫助利用這些數據。從數組填充一個UITableView
-(void) whatever{
NSData *htmlData = [[NSString stringWithContentsOfURL:[NSURL URLWithString: @"http://www.objectgraph.com/contact.html"]] dataUsingEncoding:NSUTF8StringEncoding];
TFHpple *xpathParser = [[TFHpple alloc] initWithHTMLData:htmlData];
NSArray *titles = [xpathParser search:@"//h3"]; // get the page title - this is xpath notation
TFHppleElement *title = [titles objectAtIndex:0];
NSString *myTitles = [title content];
NSArray *articles = [xpathParser search:@"//h4"]; // get the page article - this is xpath notation
TFHppleElement *article = [articles objectAtIndex:0];
NSString *myArtical = [article content];
我想創建,並從數組填充表「標題」 然後可以點擊桌子上的物品裝入一個子視圖應該顯示相同指數在相應ARTICAL?
我想這樣做編程或使用IB
任何人都可以提出一些示例代碼或教程?
謝謝。
這是偉大的rajesh,這會爲我創建表還是我需要在界面生成器中創建tableview?我需要調用這些嗎?對不起,我的無知是新的IOS dev – 2010-12-06 16:48:16