我正在使用tableView但它没有输入段数,而tableView中的行数这里是代码
这是节数和行数的代码。
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;
}
章节代码中的行数
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
NSLog(@"Cell is");
return 1;
}
细胞值
- (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=UITableViewCellSelectionStyleNone;
}
MultipleDetailViewsWithNavigatorAppDelegate *appDelegate = (MultipleDetailViewsWithNavigatorAppDelegate *)[[UIApplication sharedApplication] delegate];
cell.textLabel.font=[UIFont fontWithName:@"Helvetica" size:16];
cell.textLabel.textAlignment=UITextAlignmentLeft;
PublishData *theCellData = [appDelegate.publishArray objectAtIndex:indexPath.row];
NSLog(@"Cell is");
cell.textLabel.text =@"Test";
return cell;
}
答案 0 :(得分:2)
您是否为表格视图设置了数据源和委托?我怀疑不是。请在代码或xib中设置并检查。
答案 1 :(得分:0)
你是如何添加表视图的?如果已添加使用界面构建器,则为tableview设置数据。如果您已经按语法添加,则设置[tableview setDatasoucre:self];