SWTableView滑动单元格问题

时间:2017-08-01 08:44:51

标签: ios objective-c storyboard swtableviewcell

我正在使用SWTableView向左滑动以向用户提供更多选项,我添加了4个元素,当我关闭单元格时,并非所有单元格都返回到该位置。 请帮助![See below image the swipe back not close all the buttons] 1

1 个答案:

答案 0 :(得分:1)

你还记得设置小区的代表吗?如自述文件中所述?

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

    MyCustomTableViewCell *cell = (MyCustomTableViewCell *)[tableView dequeueReusableCellWithIdentifier:cellIdentifier 
                                                                                           forIndexPath:indexPath];

    cell.leftUtilityButtons = [self leftButtons];
    cell.rightUtilityButtons = [self rightButtons];
    cell.delegate = self;

    cell.customLabel.text = @"Some Text";
    cell.customImageView.image = [UIImage imageNamed:@"MyAwesomeTableCellImage"];
    [cell setCellHeight:cell.frame.size.height];
    return cell;
}