我在具有自定义 UITableViewCell 的表视图中创建侧边菜单。
我创建了一个可重复使用的单元格,用于以下内容:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
LeftMenuTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
NSArray* views = [[NSBundle mainBundle] loadNibNamed:@"LeftMenuTableViewCell" owner:nil options:nil];
for (UIView *view in views) {
if([view isKindOfClass:[UITableViewCell class]])
{
cell = (LeftMenuTableViewCell*)view;
[cell.displayName setText:[NSString stringWithFormat:@"Cell 1"];
}
}
}
return cell;
}
我想知道如何为这个表创建其他单元格。该表将类似于 Facebook/路径侧菜单。例如我的个人资料设置帮助注销
每个都具有相同的设计,但标签和旁边的图标的文本不同。还会在右侧加载不同的视图控制器。有人可以解释这是如何实现的吗?或者提供任何教程的链接,该教程解释了使用多个不同单元格制作自定义表格视图,我是否需要复制单元格 .h、.m 和 NIB 文件并分别创建每个自定义 UITabelViewCell?