这与我之前的问题类似,但我之前的问题实际上已经得到了一定程度的回答,这是它的一种扩展。
我有一个UITableView
我正在进入和退出编辑模式。在编辑模式下,我使用插入图标显示另一行。来自我的数据源的所有其他行都会显示一个删除图标。
出于某种原因,当我离开编辑模式时,我的数据源的最后一行不会像所有其他行一样动画。根据行为,这看起来像是一些明显的代码问题,但我似乎无法修复它。我制作了一个动画GIF来向你展示我在说什么:
有人知道为什么会这样吗?它始终是我数据源的最后一行。自定义插入行的图标动画效果很好。这不是很多代码,但最容易一次查看它,所以我将链接到Github上的确切代码:
答案 0 :(得分:0)
似乎问题不在于tableView或与之关联的任何代码。它似乎是因为拉动刷新视图而造成的。不幸的是,我没有该组件的代码。我尝试了你的拉动刷新它完美的工作。所以请删除拉动刷新,看看发生了什么。
答案 1 :(得分: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
答案 2 :(得分:0)
动画是正确的。您正在-setEditing:animated:
中插入/删除最后一行,因此有两种动画正在进行中。