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