私はiphoneのアプリケーション開発に新しい午前はそう誰も助けてくださいme.my主な問題は、XML解析されたデータを表示するためのUITableViewの行数はいくらですか?
される - >の後、私はnsmutable配列の目的であるにNSArrayにNSArrayでのXMLの属性値を挿入していたXMLを解析されました。そのような何か...
[records addObject:[NSArray arrayWithObjects:
[TBXML textForElement:visitor],
[TBXML textForElement:uniqueVisitor],
[TBXML textForElement:order],
[TBXML textForElement:revenue],
[TBXML textForElement:conversionRate],
[TBXML textForElement:newProduct],
[TBXML textForElement:outOfStockProduct],
[TBXML textForElement:productInCart],
[TBXML textForElement:visitorInc],
[TBXML textForElement:uniqueVisitorInc],
[TBXML textForElement:orderInc],
[TBXML textForElement:revenueInc],
[TBXML textForElement:conversionRateInc],
[TBXML textForElement:newProductInc],
[TBXML textForElement:outOfStockProductInc],
[TBXML textForElement:productInCartInc],nil]];
今、私はセクション内の行数は、いずれかをmethod.pleaseされるかわからないuitableview.butのすべてのセル内の各属性値を一さようなら1を表示したいですボディme.iは、サンプルコードを与えているに役立つ....
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection: (NSInteger)section{
NSLog(@"The number of row in the object array: %d ",[records count]);
return [records count];
}
テーブルビューの方法は、すべてのセル内のすべての属性値1つの不戦勝1を表示するための戻り値の型がどうなるかを教えて...今ここにあります。
ありがとうございました。