2

我想通过在该单元格中向左或向右滑动来简单地为自定义表格单元格中的自定义视图设置动画。我正在从 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;
}

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

4

2 回答 2

1

看看这个项目

UITableViewCell 滑动

于 2013-06-19T10:06:47.750 回答
1

嗨,试试这个,以满足您滑动单元格以显示带有按钮的背景视图的要求。

jzswipecell

于 2013-06-19T13:18:19.840 回答