gpt4 book ai didi

iPhone UITableViewCell SwipeGesture

转载 作者:行者123 更新时间:2023-12-03 21:01:52 26 4
gpt4 key购买 nike

我想通过在自定义表格单元格中向左或向右滑动来简单地为自定义 View 添加动画效果。我正在从 xib 加载单元格。

这是我用来从 xib 填充单元格的代码。

- (UITableViewCell *)tableView:(UITableView *)tableView
cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"CellIdentifier";

CustomCell *CustomCell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

if (CustomCell == nil)
{
NSArray *cells =[[NSBundle mainBundle] loadNibNamed:@"CustomCell" owner:nil options:nil];

for (UIView *view in cells)
{
if([view isKindOfClass:[UITableViewCell class]])
{
CustomCell = (CustomCell *)view;
break;
}
}

}
CustomCell.textLabel.Text = @"this is a text";
return CustomCell;
}

我需要的是滑动单元格以显示带有按钮的背景 View 。我搜索并找到了许多与此相关的教程,但没有一个教程是使用带有 xib 的自定义单元。

最佳答案

看看这个项目

UITableViewCell Swipe

关于iPhone UITableViewCell SwipeGesture,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17188350/

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