我一直在谷歌搜索,似乎只能找到如何创建自定义单元格作为原型单元格的示例。
我的问题是:我可以创建自定义表格视图单元格作为静态单元格吗?
提前致谢! 伊芙
答案 0 :(得分: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