0

我一直在谷歌搜索,似乎只能找到如何将自定义单元格创建为原型单元格的示例。

我的问题是:我可以将自定义表格视图单元格创建为静态单元格吗?

提前致谢!前夕

4

1 回答 1

0

不,在 Storyboard 中,您可以通过将对象拖入单元格来编辑您想要的单元格。

您只需要创建一个新的 UITableViewCell 类并在 Storyboard 中使用该类,如果需要将所有内容连接起来并使用以下方法:

#import "YourTableViewCell.h"
- (YourTableViewCell *)tableView:(YourTableViewCell *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

....

    [self configureCell:cell atIndexPath:indexPath];

}

- (void)configureCell:(YourTableViewCell *)cell atIndexPath:(NSIndexPath  *)indexPath
于 2012-04-17T11:20:41.010 回答