English 中文(简体)
在试图删除囚室时代理的意见
原标题:UITableView acting up when trying to delete a cell

我有一位可贵的书记长,当我试图去除一个囚室和删除新闻时,然后把囚室变成了老板,显示左边的红arrow。 但数据已经删除。 因为当我重新开会时,情况就已经过去了。 我的法典中是否有任何怀疑?

- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
{
    return YES;
}

- (void)setEditing:(BOOL)editing animated:(BOOL)animate
{
    [self.tableView setEditing: !self.tableView.editing animated:YES];

    if (self.tableView.editing)
        [self.navigationItem.leftBarButtonItem setTitle:@"Done"];
    else
        [self.navigationItem.leftBarButtonItem setTitle:@"Edit"];
}

-(void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
 {
     if (editingStyle == UITableViewCellEditingStyleDelete) 
     {
         PFObject *routine= [self.routineArray objectAtIndex:indexPath.row];
         [routine deleteInBackgroundWithBlock:^(BOOL succeeded, NSError *error) {
             if (!error) {
                 [self.tableView reloadData];
             } else {
                 // There was an error saving the gameScore.
             }
         }];   
     }
 }
最佳回答

页: 1 浏览-deleteRowsAtIndexPaths:with Row Animation:,然后从您的核心数据库中删除。 该命令很重要,因为如果在你的数据来源中仍然存在,或由于表格而出现一个例外,你可以从表格中删除。 从数据来源的物品数量来看。

举例来说,它首先从数据库中删除,然后从数据库中删除,然后从表态中删除,该表也应运作。

-(void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
    if (editingStyle == UITableViewCellEditingStyleDelete) 
    {
        PFObject *routine= [self.routineArray objectAtIndex:indexPath.row];
        [routine deleteInBackgroundWithBlock:^(BOOL succeeded, NSError *error) {
            if (!error) {
                [self.routineArray removeObjectAtIndex:indexPath.row];
                [self.tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade];
            } else {
                // There was an error saving the gameScore.
            }
        }];   
    }
}
问题回答

暂无回答




相关问题
Code sign Error

I have created a new iPhone application.I have two mach machines. I have created the certificate for running application in iPhone in one mac. Can I use the other mac for running the application in ...

ABPersonViewController Usage for displaying contact

Created a View based Project and added a contact to the AddressBook using ABAddressBookRef,ABRecordRef now i wanted to display the added contact ABPersonViewController is the method but how to use in ...

将音频Clips从Peter改为服务器

我不禁要问,那里是否有任何实例表明从Peit向服务器发送音响。 I m不关心电话或SIP风格的解决办法,只是一个简单的袖珍流程......

• 如何将搜查线重新定位?

我正试图把图像放在搜索条左边。 但是,问题始于这里,搜索条线不能重新布署。

热门标签