gpt4 book ai didi

ios - 如何使用选项(共享、完成、删除)按钮设置 Tableview Cell Movable?它的行动?

转载 作者:行者123 更新时间:2023-12-01 20:01:24 25 4
gpt4 key购买 nike

I Want Set Movable Tableview Cell with Button Action.And how can i manage button action.

How Can i implement this stuff.

Here i have Attached image i want like this Image.


先感谢您
enter image description here

最佳答案

您可以在不使用任何第三方控件的情况下执行此操作,使用 UITableViewRowAction默认 UITableView ..

下面是代码片段...

- (NSArray *)tableView:(UITableView *)tableView editActionsForRowAtIndexPath:(NSIndexPath *)indexPath{
UITableViewRowAction *editAction = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDefault title:@" Edit " handler:^(UITableViewRowAction *action, NSIndexPath *indexPath){
// maybe show an action sheet with more options
// [self callBlockUser];

}];
editAction.backgroundColor = [UIColor lightGrayColor];

UITableViewRowAction *deleteAction = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDestructive title:@"Delete" handler:^(UITableViewRowAction *action, NSIndexPath *indexPath){
// maybe show an action sheet with more options
// [self callBlockUser];


}];
deleteAction.backgroundColor = [UIColor redColor];
return @[deleteAction,editAction];
}

关于ios - 如何使用选项(共享、完成、删除)按钮设置 Tableview Cell Movable?它的行动?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39895594/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com