gpt4 book ai didi

ios - SWTableViewCell的RightUtilityButton点击表格单元格时如何直接显示

转载 作者:行者123 更新时间:2023-11-29 10:40:07 26 4
gpt4 key购买 nike

https://github.com/CEWendel/SWTableViewCell

我希望 SWTableViewCell 的 RightUtilityButton 在我单击(而不是拖动)表格单元格时直接显示。

SWTableViewCell好像没有提供这个接口(interface)

最佳答案

调用 showRightUtilityButtonsAnimated: 方法。我正在使用给出的示例代码。替换 didSelectRowAtIndexPath 并将 UMTableViewCell 更改为 YourCellClassName

    - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
NSLog(@"cell selected at index path %ld:%ld", (long)indexPath.section, (long)indexPath.row);
NSLog(@"selected cell index path is %@", [self.tableView indexPathForSelectedRow]);


if (!tableView.isEditing) {
[tableView deselectRowAtIndexPath:indexPath animated:YES];
}

//if you want to hide other cell which are opened first
for (UMTableViewCell *cell in [tableView visibleCells]) {

[cell hideUtilityButtonsAnimated:YES];
}

UMTableViewCell *cell = (UMTableViewCell *)[tableView cellForRowAtIndexPath:indexPath];
[cell showRightUtilityButtonsAnimated:YES];


}

关于ios - SWTableViewCell的RightUtilityButton点击表格单元格时如何直接显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24977622/

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