嗨,我有tableView
我的看法。但我希望导航栏中的编辑适用于 tableView。你能告诉我怎么做吗?
我为主视图设置了导航栏,并且也进行了tableView
设置。
我做了一个创建导航栏的方法:
- (UINavigationBar *)createNavigationBar
{
UINavigationItem *title = [[UINavigationItem alloc] initWithTitle:@"Task Manager"];
UINavigationBar *new = [[UINavigationBar alloc] initWithFrame:CGRectMake(0, 0, 320, 44)];
UIBarButtonItem *addButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemEdit target:self action:nil];
title.leftBarButtonItem = addButton;
[new pushNavigationItem:title animated:YES];
UIColor *color = UIColorFromRGB(0xff8c00); // Dark orange
new.tintColor = color;
return new;
}
我有
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
设置为好。
当我点击主导航栏中的编辑按钮时,我基本上需要为 sub-tableView 出现红色圆圈。
如果我不清楚,我很抱歉。如果您需要任何澄清,请询问我。
谢谢!:)