0

我正在尝试使用编辑模式向 TableView 添加新行。使用了本教程。但是在关闭我的编辑模式视图后,我的表格视图没有重新加载。我的 addItem: 方法

- (IBAction)addItem:(id)sender {

    BIDAppDelegate *appDelegate = (BIDAppDelegate *)[[UIApplication sharedApplication] delegate];

    sqlite3 *database;
    NSString *databaseName;
    NSString *databasePath;

    databaseName = @"TestProjectDatabase.sqlite";
    NSArray *documentPaths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *documentsDir = [documentPaths objectAtIndex:0];
    databasePath = [documentsDir stringByAppendingPathComponent:databaseName];

    NSFileManager *fileManager = [NSFileManager defaultManager];

    BOOL success = [fileManager fileExistsAtPath:databasePath];

    if(!success) {
        databasePath = [[NSBundle mainBundle] pathForResource:databaseName ofType:nil];
    }

    if (sqlite3_open([databasePath UTF8String], &database) == SQLITE_OK)
    {

        NSString *insertSQL = [NSString stringWithFormat:@"insert into \"MyItems\" ( \"MyItemName\", \"MyItemDescription\") values ( '%@', '%@');", _nameTextField.text, _descriptionTextField.text];
        const char *insert_stmt = [insertSQL UTF8String];
        sqlite3_stmt *compiledStatement;


        if(sqlite3_prepare_v2(database, insert_stmt, -1, &compiledStatement, NULL) != SQLITE_OK)
        {
            NSAssert1(0, @"Error while creating add statement. '%s'", sqlite3_errmsg(database)); 
        }else{
            if (sqlite3_step(compiledStatement) == SQLITE_DONE)
            {
                //   NSLog(@"All ok");
            } else {
                //   NSLog(@"FAIL");
            }
        }
        sqlite3_finalize(compiledStatement);
    }
    sqlite3_close(database);

    MyItems *itemsToDatabase = [[MyItems alloc] initWithItemName:_nameTextField.text andItemDescription:_descriptionTextField.text];
    [appDelegate.myItems addObject:itemsToDatabase];
    [self dismissModalViewControllerAnimated:YES];
}

SQL插入没问题,因为重新启动我的项目后新行在哪里。任何建议如何解决它?

4

1 回答 1

1

假设表数据源从 appDelegate.myItems 读取,您只需要重新加载表本身[tableView reloadData];

于 2012-04-19T11:13:30.150 回答