2

我在视图控制器中有多个表视图,它给出了错误。我不知道哪里出了问题,任何人都可以指导。数据未显示在表格视图中,但数组在控制台中打印时有数据,我尝试不使用数组也向 cell.textLabel.text 提供静态数据,但未显示在表格视图中,检查的行数在那里没有问题。控制不去 cell.textLabel.text,我没有得到什么是错的。请指导以上。下面是代码:

-(UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell;

if(tableView == self.mLocationTable)
{
    cell = [self.mLocationTable dequeueReusableCellWithIdentifier:CellIdentifier];

    if (cell == nil)
    {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
    }
    else{
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
    }
    // if([self.mLocShowArr count]!= 0)
    // {
    //  NSString *str = [self.mLocShowArr objectAtIndex:indexPath.row];
    cell.textLabel.text = @"locations";
    // NSLog(@"show loc:%@", [self.mLocShowArr objectAtIndex:0]);
    //  }

}

if(tableView == self.mNotifyTable)
{
    cell = [self.mNotifyTable dequeueReusableCellWithIdentifier:CellIdentifier];

    if (cell == nil)
    {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
    }
    UIImage *yourImage = [UIImage imageNamed:@"emma-watson-02.jpg"];
    UIImageView *imageViewToPutInCell = [[UIImageView alloc] initWithImage:yourImage];
    imageViewToPutInCell.frame = CGRectMake(5, 8, 55, 55);

    UILabel *cellTextLabel = [[UILabel alloc]initWithFrame:CGRectMake(68, 10, 200, 40)];
    cellTextLabel.text = @"notification view";

    [cell addSubview:imageViewToPutInCell];
    [cell addSubview:cellTextLabel];

}
}

这是完整的错误:错误 [IRForTarget]:调用目标中不存在的仅符号函数“objc_msgSend”。

4

2 回答 2

0

要检查的东西。

  1. 所有需要实现的数据源方法
  2. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section 记录返回值并确保它不为 0
  3. 为不同的表格提供不同的单元格标识符
  4. 确保表数据源和委托在 nib 中连接

此处的错误说明

于 2013-04-01T06:43:27.630 回答
0

试试这个代码!!!在您的代码中,您错过了“返回单元格;”

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
    cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier] autorelease];
    cell.selectionStyle = UITableViewCellSelectionStyleBlue;
    cell.accessoryType = UITableViewCellAccessoryNone;
}
    if(tableView == self.mNotifyTable) {
      cell.textLabel.text = @"locations";

      UIImage *yourImage = [UIImage imageNamed:@"emma-watson-02.jpg"];
      UIImageView *imageViewToPutInCell = [[UIImageView alloc] initWithImage:yourImage];
      imageViewToPutInCell.frame = CGRectMake(5, 8, 55, 55);

      UILabel *cellTextLabel = [[UILabel alloc]initWithFrame:CGRectMake(68, 10, 200, 40)];
      cellTextLabel.text = @"notification view";

      [cell addSubview:imageViewToPutInCell];
      [cell addSubview:cellTextLabel];
   }
   return cell;
}

希望这能解决你的问题!!!

如果对你有帮助,请采纳!!!

于 2013-04-01T07:53:37.320 回答