我在这里有一个简单的项目https://github.com/spikepoolie/tracker.git,其中带有用户名和密码的视图“您可以输入任何值”没有验证,点击登录按钮后,我想带我到 tableview,它确实,但它没有使用我创建的自定义单元格。
有人可以看看这个项目,让我知道我错过了什么
谢谢罗德里戈
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *cellIdentifier = @"CellCustomLoadCell";
CellCustomLoadCell *cell = (CellCustomLoadCell *)[tableView dequeueReusableCellWithIdentifier:cellIdentifier];
if (cell == nil) {
NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"CellCustomLoadCell" owner:self options:nil];
cell = (CellCustomLoadCell *)[nib objectAtIndex:0];
}
cell.loadNumber.text=@"rodrigo";
return cell;
}