我的问题是如果行返回 5 然后UITableView
显示 0 到 5 索引,但我们想要打印 3 到 5 的任何逻辑??` // 创建单元格标识符 static NSString *CellIdentifier = @"CellIdentifier";
// Create the cell if cells are available with same cell identifier
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
// If there are no cells available, allocate a new one with Default style
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
cell.textLabel.text = [[no objectAtIndex:indexPath.row]valueForKey:@"name"];
// Configure cell...
我可以打印值自定义范围吗