我只想通过在自定义表格单元格中向左或向右滑动来为自定义视图设置动画。我正在从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一起使用。

最佳答案

签出这个专案

UITableViewCell Swipe

10-08 12:35