如何通过点击单元格在uitableviewcell中显示滑动按钮?

时间:2017-04-29 13:28:43

标签: ios objective-c uitableview tableviewcell

我试图通过编程手动调用这些函数,这些函数是

    -(NSArray *)tableView:(UITableView *)tableView editActionsForRowAtIndexPath:(NSIndexPath *)indexPath 

- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath

- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
{
    return YES; //tableview must be editable or nothing will work...
}

当我调用函数时,它在函数内部工作,例如editActionsForRowAtIndexPath函数,但不显示按钮。 任何线索或帮助将受到高度赞赏。

2 个答案:

答案 0 :(得分:0)

您忘记拨打[self.tableView setEditing:YES animated:YES];了吗?

答案 1 :(得分:0)

为什么使用上述3种方法进行滑动和删除表格视图? 只有一种方法就足够了。我为你的问题创建了一个方法。它工作正常。

ViewController.h

#import <UIKit/UIKit.h>

@interface ViewController : UIViewController<UITableViewDataSource,UITableViewDelegate>

@property (nonatomic, strong) IBOutlet UITableView *tableViewEdit;

@end

ViewController.m

#import "ViewController.h"

@interface ViewController (){
    NSMutableArray *arr;
}

@end

@implementation ViewController

@synthesize tableViewEdit;

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
    arr = [[NSMutableArray alloc]initWithObjects:@"iOS",@"Android",@"Windows",nil];
}

- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

//UITableViewDataSource methods
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
    return 1;
}

-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
    return  arr.count;
}

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
    static NSString *strCell = @"cell";
    UITableViewCell *cell = [tableViewEdit dequeueReusableCellWithIdentifier:strCell];
    if(cell == nil){
        cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:strCell];
    }

    cell.textLabel.text = arr[indexPath.row];
    return cell;
}

- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
    if(editingStyle == UITableViewCellEditingStyleDelete)
    {
        [arr removeObjectAtIndex:indexPath.row];
        [tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationLeft];
    }
}

当我首先运行应用程序时,它会显示以下数据

enter image description here

然后当我滑动表格视图

enter image description here

最后,我从表格视图和表格视图中删除了数据

enter image description here