带有故事板的自定义静态 TableView - 单元格背景

Posted

技术标签:

【中文标题】带有故事板的自定义静态 TableView - 单元格背景【英文标题】:Customized Static TableView with Storyboard - cell background 【发布时间】:2012-11-11 12:55:14 【问题描述】:

我正在使用情节提要来制作出色的静态表格视图。 一切正常!

现在我想自定义表格视图单元格。

所以我添加了一个 tableViewController 并将它连接到情节提要视图。 这是我用来自定义的代码:

-- (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;

但是如果我现在运行应用程序,表格视图是空的并且没有自定义背景...

有人可以帮我吗? :=)

劳伦兹

【问题讨论】:

【参考方案1】:

有两种方法可以为您的tableview:static 单元格和动态原型设置单元格。其实对于静态单元格模式,可以直接在IB中设置单元格的背景色。

如果您想使用cellForRowAtIndexPath 方法来自定义您的单元格,您应该实现所有非可选方法,例如:numberOfRowsInSectioncellForRowAtIndexPath

【讨论】:

以上是关于带有故事板的自定义静态 TableView - 单元格背景的主要内容,如果未能解决你的问题,请参考以下文章

来自故事板的自定义 UIButton

从 AppDelegate 访问在故事板的 tableview 中创建的视图?

带有 Prev/Next 的 UIToolbar 在多个分段的 tableview 故事板中利用多个文本字段

XCode故事板中的自定义静态表格单元格?

在 TableView 的自定义单元格中添加单选按钮并且无法访问外部

带有静态 TableView 单元的 IOS 8 动态类型 - 基本和字幕