4

这类似于我之前的问题,但我之前的问题实际上已经得到了一些回答,这是它的一种延伸。

我有一个UITableView我正在进入和退出编辑模式的东西。在编辑模式下,我会显示一个带有插入图标的附加行。我的数据源中的所有其他行都显示有删除图标。

出于某种原因,离开编辑模式时,我的数据源中的最后一行的动画效果与所有其他行不同。根据行为,这对我来说似乎是一些明显的代码问题,但我似乎无法修复它。我制作了一个动画 GIF 来向您展示我在说什么:

有谁知道为什么会发生这种情况?它总是来自我的数据源的最后一行。自定义插入行的图标动画效果很好。这不是一大堆代码,但最容易一次查看所有代码,所以我会将您链接到 Github 上的确切代码:

https://github.com/ryancole/pound-client/blob/master/pound-client/controllers/ChannelListViewController.m#L100

4

3 回答 3

0

似乎问题不在于 tableView 或与之相关的任何代码。似乎是由于拉动刷新视图而引起的。不幸的是,我没有该组件的代码。我试过你没有拉刷新,它工作得很好。所以请移除拉动刷新,看看发生了什么。

于 2013-01-22T01:54:36.547 回答
0

动画是正确的。您正在插入/删除最后一行-setEditing:animated:,所以有两种动画正在进行。

于 2013-01-22T23:02:26.070 回答
0
#import <UIKit/UIKit.h>

@interface zViewController : UIViewController

@property (weak, nonatomic) IBOutlet UITableView *table;
@end



#import "zViewController.h"

@interface zViewController ()
@property (nonatomic, retain) NSArray* data;
@end

@implementation zViewController{
    BOOL _editing;
}
@synthesize data = _data;
@synthesize table = _table;

- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
    self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
    if (self) {
        _editing = NO;
    }
    return self;
}

- (void)viewDidLoad
{
    [super viewDidLoad];
    self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithTitle:@"Edit" style:UIBarButtonItemStyleBordered target:self action:@selector(editButtonWasPressed:)];
    [self loadRecords];
}

- (void)editButtonWasPressed:(id)sender {
    self.navigationItem.leftBarButtonItem  = [[UIBarButtonItem alloc] initWithTitle:@"Done" style:UIBarButtonItemStyleBordered target:self action:@selector(saveButtonWasPressed:)];
    [self setEditing:YES animated:YES];
}

- (void)saveButtonWasPressed:(id)sender {
    self.navigationItem.leftBarButtonItem  = [[UIBarButtonItem alloc] initWithTitle:@"Edit" style:UIBarButtonItemStyleBordered target:self action:@selector(editButtonWasPressed:)];
    [self setEditing:NO animated:YES];
}
- (void)setEditing:(BOOL)editing animated:(BOOL)animated {
    _editing = editing;

    if (editing == YES) {
        [self.table insertRowsAtIndexPaths:[NSArray arrayWithObject:[NSIndexPath indexPathForRow:self.data.count -1 inSection:0]] withRowAnimation:UITableViewRowAnimationNone];
    }

    [super setEditing:editing animated:animated];
    [self.table setEditing:editing animated:animated];

    if (editing == NO) {
        [self.table deleteRowsAtIndexPaths:[NSArray arrayWithObject:[NSIndexPath indexPathForRow:self.data.count inSection:0]] withRowAnimation:UITableViewRowAnimationNone];
    }
}

- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
    [self fetchChannels];
}

- (void)fetchChannels {
    [self.table reloadData];
}

-(void) loadRecords{
    self.data = @[@"Record 1", @"Record 2", @"Record 3"];
}


#pragma mark - Table view data source

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return 1;
}
- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath {
    return (indexPath.row == self.data.count)? UITableViewCellEditingStyleInsert : UITableViewCellEditingStyleDelete;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return _editing? self.data.count + 1 : self.data.count;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"Cell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
    cell.textLabel.text = self.data[indexPath.row];
    return cell;
}
@end
于 2013-01-22T21:56:18.893 回答