我正在使用storyboard来进行静态的tableview。 一切顺利!
现在我想自定义表格视图单元格。
所以我添加了一个tableViewController并将其连接到storyboard视图。 这是我用来定制的代码:
-- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
// Configure the cell...
UIColor *color = [[UIColor alloc] initWithRed:0.0 green:0.0 blue:0.0 alpha:0.0];
cell.detailTextLabel.backgroundColor = color;
cell.textLabel.backgroundColor = color;
cell.backgroundView = [ [UIImageView alloc] initWithImage:[ [UIImage imageNamed:@"cellbackground.png"] stretchableImageWithLeftCapWidth:0.0 topCapHeight:5.0]];
cell.selectedBackgroundView = [ [UIImageView alloc] initWithImage:[ [UIImage imageNamed:@"cellbackground_down.png"] stretchableImageWithLeftCapWidth:0.0 topCapHeight:5.0]];
return cell;
}
但是,如果我现在运行应用程序,表视图为空,并且没有自定义背景...
有人可以帮帮我吗? :=)
Laurenz
答案 0 :(得分:0)
有两种方法可以为tableview:static
单元格设置单元格&动态原型。事实上,对于静态单元格模式,您可以直接在IB中设置单元格的背景颜色。
如果您想使用cellForRowAtIndexPath
方法自定义您的单元格,则应实施所有非可选方法,例如:numberOfRowsInSection
cellForRowAtIndexPath