0

私はテーブルビューを持っていて、2 つのテキストフィールドを持つカスタムセルを作成しました...テキストフィールドのテキストをコアデータに保存したいので、その目的のためにコアデータクラスを作成し、コアデータメソッドを実装する方法を知っています.

ユーザーがテキストを入力すると、コアデータに保存されるように、テーブルビューにセルを表示する方法を理解するのに苦労しています。私の理解から、これらは手順です:

1 - テーブルビューはデフォルトでカスタムセルを読み込み、テキストフィールドとともに表示します。

2 - ユーザーがテキストを入力し、Enter キーを押すと、コア データに保存されます。

私の問題は、どのように番号 1 を実行できるかです。まだデータがないため、ビューにデータをロードできません!最初にセルを表示する必要があります。

誰かがこの問題について私を助けてくれますか? これはこれまでの私のコードです:

- (void)viewDidLoad
{

AppDelegate *appDelegate =[[UIApplication sharedApplication] delegate];
self.managedObjectContext=[appDelegate managedObjectContext];


NSError *error;
if (![[self fetchedResultsController] performFetch:&error]) {
    /*
     Replace this implementation with code to handle the error appropriately.

     abort() causes the application to generate a crash log and terminate. You should not use this function in a shipping application, although it may be useful during development.
     */
    NSLog(@"Unresolved error %@, %@", error, [error userInfo]);

}

[self fetchedResultsController];


[super viewDidLoad];
}

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{

return [[self.fetchedResultsController sections] count];
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return [[[self.fetchedResultsController sections] objectAtIndex:section] numberOfObjects];
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath

{
static NSString *CellIdentifier = @"machines";

cellMeios *cellM = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

if (cellM == nil) {
    cellM = [[cellMeios alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}

return cellM;
}

- (NSFetchedResultsController *)fetchedResultsController
{
if (_fetchedResultsController != nil)
{
    return _fetchedResultsController;
}

// Create and configure a fetch request.
NSFetchRequest *fetchRequestMo = [[NSFetchRequest alloc] init];
NSEntityDescription *entityMo = [NSEntityDescription entityForName:@"Mo" inManagedObjectContext:self.managedObjectContext];
[fetchRequestMo setEntity:entityMo];

// Create the sort descriptors array.
NSSortDescriptor *cellTitle = [[NSSortDescriptor alloc] initWithKey:@"reference" ascending:YES];
NSArray *sortDescriptors = [[NSArray alloc] initWithObjects:cellTitle, nil];
[fetchRequestMo setSortDescriptors:sortDescriptors];

// Create and initialize the fetch results controller.
_fetchedResultsController = [[NSFetchedResultsController alloc] initWithFetchRequest:fetchRequestMo managedObjectContext:self.managedObjectContext sectionNameKeyPath:@"reference" cacheName:nil];
_fetchedResultsController.delegate = self;
self.fetchedResultsController = _fetchedResultsController;

return _fetchedResultsController;
}

他の方法もありますが、それらは私の問題には関係ないと思います。問題は...ユーザーがいっぱいになるように何かを表示する必要があるということです!

私はすでにコアデータを操作する別のテーブルビューを持っていますが、その場合、テーブルは最初は空であると想定され、次にテーブルビューの上部にプラスボタンがあり、彼は何かを選択し、コアデータに保存されます関連情報を含むセルを表示します。

よろしくお願いします。

4

1 に答える 1

2

テーブル ビューを編集可能にする場合は、ユーザーがナビゲーション バーの「+」(プラス) ボタンを押したときにトリガーされる insertNewObject などのメソッドが必要です。このメソッドの実装により、新しい管理対象オブジェクトが作成され、コンテキストに挿入され、テーブルが再ロードされます。fetchedResultsController が空に戻ったときに、このメソッドをトリガーすることもできます。

私のView Controllerの1つからのバージョンは次のとおりです。

- (void)insertNewObject:(id)sender
{
    NSManagedObjectContext *context = [self.managedObject managedObjectContext];
    NSRelationshipDescription *relation = [[self.managedObject entity] relationshipsByName][self.relationship];
    NSEntityDescription *destinationEntity = [relation destinationEntity];
    NSManagedObject *newManagedObject = (NSManagedObject*)[NSEntityDescription insertNewObjectForEntityForName:[destinationEntity name] inManagedObjectContext:context];

    if ([relation isOrdered]) {
        [self.items insertObject:newManagedObject atIndex:[self.items count]];
    }
    else {
        NSMutableSet *set = [self.managedObject mutableSetValueForKey:self.relationship];
        [set addObject:newManagedObject];
        self.items = [NSMutableOrderedSet orderedSetWithSet:set];
    }

    // Save the context.
    NSError *error = nil;
    if (![context save:&error]) {
        NSLog(@"Unresolved error %@, %@", error, [error userInfo]);
        [[[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Validation Error", @"Validation Error") message:[error localizedDescription] delegate:nil cancelButtonTitle:NSLocalizedString(@"OK", @"OK") otherButtonTitles: nil, nil] show];
    }
    [self.tableView reloadData];
}
于 2013-04-06T20:53:15.463 に答える