0
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *theCell=[UITableViewCell alloc];
theCell=[theCell initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"cell"];
NSLog(@"%i",[table count]);
theCell.textLabel.text=[table objectAtIndex:[indexPath row]];
return theCell;
}
有插入文件Values.plist三個值,它們填充在功能viewDidLoad中在我的iPhone應用程序崩潰時我使用表格視圖
" theCell.textLabel.text=[table objectAtIndex:[indexPath row]]; "
But the line "NSLog(@"%i",[table count]);" works and shows me 3
please help .
的NSArray的「表」(),但我的應用程序崩潰
這d幫助發佈應用程序崩潰時得到的錯誤消息。看一下控制檯來找到它。堆棧跟蹤也很有幫助。 – Caleb 2012-01-15 06:36:00
所以最新的錯誤信息?確保你的數組中有字符串值。 – 2012-01-16 15:33:29