10

这让我很头疼:-)

UITableView我在a 中填充了一个功能齐全的 CoreData UIViewController,并且我已经成功实现了“滑动删除选项”(这很容易),我还可以使用出现红色圆圈的东西的编辑按钮删除单个实例。

我的问题是,我认为这是因为我有一个 CustomCell,当我按下编辑按钮时UILabels不要向右移动。

我已经尝试过使用-(void)layoutSubViews和其他一些,但没有任何效果。

我已经发布了我的代码cellForRowAtIndexPath。这是我的应用程序中注释部分的一部分。此代码有效,我只需要知道当我进入编辑模式时如何移动标签?

感谢您的提示和建议:-)

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

MNCustomCell *cell = [_mainTableView dequeueReusableCellWithIdentifier:cellIdentifier forIndexPath:indexPath];
if (cell == nil) {
    cell = [[MNCustomCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIdentifier];
}


//cell.textLabel.text = [_tableArray objectAtIndex:indexPath.row];

MNotes *mnotes = [[self fetchedResultsController] objectAtIndexPath:indexPath];

cell.noteTitle.text = mnotes.noteTitleString;
cell.noteSummary.text = mnotes.mainNoteString;

mnotes.createDate = [[NSDate alloc] init];
SORelativeDateTransformer *relativeDateTransformer = [[SORelativeDateTransformer alloc] init];
NSString *relativeDate = [relativeDateTransformer transformedValue:mnotes.createDate];

cell.noteDate.text = relativeDate;


cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;

return cell;
}

-

//This is the Custom Cell
@interface MNCustomCell : UITableViewCell
{

}

@property (strong, nonatomic) IBOutlet UILabel *noteTitle;
@property (strong, nonatomic) IBOutlet UILabel *noteDate;

@property (strong, nonatomic) IBOutlet UITextView *noteSummary;


@end

-

- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
  {
    self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
    if (self) {
    // Initialization code

    [self.contentView addSubview:_noteTitle];
    [self.contentView addSubview:_noteSummary];
    [self.contentView addSubview:_noteDate];

  }
   return self;
  }
4

3 回答 3

9

其他解决方案可能会起作用,但这种方式会自动为您制作动画。 MNCustomCell不会根据单元格的当前状态重新布局视图,但是如果将标签添加到单元格的 contentView 中,它将。

以下示例将移动标签,使其不会干扰删除按钮。

MNCustomCell.m

- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier {
    self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
    if (self) {
        mainLabel = [[[UILabel alloc] initWithFrame:CGRectMake(0.0, 0.0, 220.0, 15.0)]];
        mainLabel.autoresizingMask = UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleHeight;
        [cell.contentView addSubview:mainLabel];
于 2012-12-02T07:11:08.193 回答
1

在您的自定义单元类中实现以下方法。

- (void)willTransitionToState:(UITableViewCellStateMask)state 

- (void)didTransitionToState:(UITableViewCellStateMask)state

并相应地移动您的标签。

它应该像

- (void)willTransitionToState:(UITableViewCellStateMask)state {

    [super willTransitionToState:state];

    if ((state & UITableViewCellStateShowingDeleteConfirmationMask) == UITableViewCellStateShowingDeleteConfirmationMask) {
       label.frame = ...
    }
}

编辑:

- (void)willTransitionToState:(UITableViewCellStateMask)state {

    [super willTransitionToState:state];

//    label.hidden = YES;
//    label.alpha = 0.0;
}

- (void)didTransitionToState:(UITableViewCellStateMask)state {

    [super didTransitionToState:state];

    if (state == UITableViewCellStateShowingDeleteConfirmationMask) {

        [UIView beginAnimations:@"anim" context:nil];
        label.frame = leftFrame;
        [UIView commitAnimations];
    } else if (state == UITableViewCellStateDefaultMask) {

        [UIView beginAnimations:@"anim" context:nil];
        label.frame = rightFrame;
        [UIView commitAnimations];
    }
}
于 2012-12-02T04:04:06.440 回答
0

它是一个 hack,但唯一对我有用的是放入一个隐藏的图像并将我的标签限制在它上面。

例如:

我在 UITableViewCell 中有一个 UILabel,当我在屏幕上和屏幕上为我的表格设置动画时,它没有随单元格移动。但其他单元格工作得很好。我什么都试过了。

我最终将图像放在标签的左侧(就像其他单元格一样),并将标签的约束添加到固定宽度的图像,并将图像左侧的约束添加到容器。

这解决了我的问题,现在标签与单元格一起动画。

我不确定标签的 jenky 布局是怎样的,但我尝试了所有的内容模式,并在设置中玩了两个多小时,但没有其他任何效果。

于 2019-07-03T00:48:53.230 回答