以编程方式设置单元格标识符
以编程方式设置单元格标识符
我正在构建一个带有一些单元格的UITableView
。然而,它一直抛出无法使用标识符\"cell\"重用单元格
的错误。我正在使用下面的代码,它应该是正确的。我做错了什么吗?\n
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { static NSString *cellIdentifier = @"cell"; UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier forIndexPath:indexPath]; if (!cell) cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier: cellIdentifier]; cell.textLabel.text = [self.ninjas[indexPath.row] name]; NSString *imageUrl = [NSString stringWithFormat: @"%@", [self.ninjas[indexPath.row] thumbnail]]; [cell.imageView setImageWithURL:[NSURL URLWithString:imageUrl] placeholderImage:[UIImage imageNamed:@"50-50.jpg"]]; return cell; }
\n我没有在这个应用程序中使用Storyboard。