私はこのコアデータが初めてです。関係に慣れるために、対多関係を持つ 2 つのエンティティ CategoryList (属性「categories」で構成される) と ExpenseList (属性「amountspent」で構成される) を作成しました。「CategoryList」から「ExpenseList」への関係は「expenselist」です。最初のテーブルビューには、次のような各カテゴリの合計費用が表示されます
food -150
transportation -100
mobile -100
shopping -500
2番目のテーブルビューには、次のような個々の費用が表示されます
food -100
food -50
transportation -100
mobile -50
mobile -50
shopping -200
shopping -100
shopping -200
スレッドセーフであるため、オブジェクト ID を使用して 2 番目のテーブルビューから個々の経費行を削除するコードを作成しました。2 番目のテーブル ビューから食品エントリを削除すると、
food -50
そして、最初のテーブルビューに戻ると、食べ物とショーが更新されます
food -100
最初のテーブル ビューをデフォルトの通知センターに登録しました。最初のテーブル ビューは、オブジェクトが削除されるたびに通知を送信します (nslog で確認)。最初のテーブルビューが通知を受け取ると、テーブルビューにデータをリロードします。しかし、テーブルビューのリロード中に、オブジェクトが次のテーブルビューから削除されたカテゴリの望ましくない値が表示されます。両方のテーブルビューは、ナビゲーション コントローラーによって接続されています。
ここに、最初のテーブルビューの m.file があります。
#import "displayTable.h"
#import "CategoryList.h"
#import "ExpenseList.h"
#import "IncomeList.h"
#import "coreAppDelegate.h"
@interface displayTable ()
@end
@implementation displayTable
- (NSManagedObjectContext *)managedObjectContext
{
NSManagedObjectContext *context = nil;
id delegate = [[UIApplication sharedApplication] delegate];
if ([delegate performSelector:@selector(managedObjectContext)]) {
context = [delegate managedObjectContext];
}
return context;
}
- (id)initWithStyle:(UITableViewStyle)style
{
self = [super initWithStyle:style];
if (self) {
// Custom initialization
}
return self;
}
- (void)viewDidLoad
{
[super viewDidLoad];
todaysL = [[todayslist alloc]init];
self.expenseArray = [[NSMutableArray alloc]
initWithObjects:@"0.00",
@"0.00",
@"0.00",
@"0.00",
@"0.00",
@"0.00",
nil];
self.categoryArray = [[NSMutableArray alloc]
initWithObjects:@"food",
@"transportation",
@"fuel",
@"mobile",
@"shopping",
@"others",
nil];
[self populateExpenses];
NSOperationQueue *mainQueue = [NSOperationQueue mainQueue];
[[NSNotificationCenter defaultCenter]
addObserverForName:NSManagedObjectContextObjectsDidChangeNotification
object:nil
queue:[NSOperationQueue mainQueue]
usingBlock:^(NSNotification *notification)
{
NSLog(@"Notification received!");
[self populateExpenses];
// [self viewDidLoad];
[self.tableView reloadData];
}];
// Uncomment the following line to preserve selection between presentations.
// self.clearsSelectionOnViewWillAppear = NO;
// Uncomment the following line to display an Edit button in the navigation bar for this view controller.
// self.navigationItem.rightBarButtonItem = self.editButtonItem;
}
- (void)viewDidAppear:(BOOL)animated
{
[super viewDidAppear:animated];
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
#pragma mark-Table view data source
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
//#warning Potentially incomplete method implementation.
// Return the number of sections.
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
//#warning Incomplete method implementation.
// Return the number of rows in the section.
return [self.categoryArray count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
// Configure the cell...
if(cell == nil)
{
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle
reuseIdentifier:CellIdentifier];
}
cell.textLabel.text = [_categoryArray objectAtIndex:indexPath.row];
cell.detailTextLabel.text = [_expenseArray objectAtIndex:indexPath.row];
return cell;
}
これはデータを取得するための私の関数です
-(void)populateExpenses
{
NSManagedObjectContext *managedObjectContexts = [self managedObjectContext];
NSEntityDescription *categorylistEntity = [NSEntityDescription entityForName:@"CategoryList" inManagedObjectContext:managedObjectContext];
NSFetchRequest *request = [[NSFetchRequest alloc]init];
[request setEntity:categorylistEntity];
NSError *error =nil;
NSArray *fetchedObjects = [managedObjectContext executeFetchRequest:request error:&error];
if(fetchedObjects == nil)
{
NSLog(@"your fetching cause error");
}
else
{
for(CategoryList *categoryL in fetchedObjects)
{
if([categoryL.categories isEqualToString: @"food"] )
{
for(ExpenseList *expenseL in categoryL.expenselist)
{
food = food + expenseL.amountSpent;
//NSLog(@"display food %f",food);
}
NSString *foodString = [NSString stringWithFormat:@"%.2f",food];
[self.expenseArray replaceObjectAtIndex:0 withObject:foodString];
//NSLog(@"foooood%f",food);
}
else if ([categoryL.categories isEqualToString: @"transportation"])
{
for(ExpenseList *expenseL in categoryL.expenselist)
{
transportation = transportation + expenseL.amountSpent;
}
NSString *transportationString = [NSString stringWithFormat:@"%.2f",transportation];
[self.expenseArray replaceObjectAtIndex:1 withObject:transportationString];
}
else if ([categoryL.categories isEqualToString: @"fuel"])
{
for(ExpenseList *expenseL in categoryL.expenselist)
{
fuel = fuel + expenseL.amountSpent;
}
NSString *fuelString = [NSString stringWithFormat:@"%.2f",fuel];
[self.expenseArray replaceObjectAtIndex:2 withObject:fuelString];
}
else if([categoryL.categories isEqualToString: @"mobile"])
{
for(ExpenseList *expenseL in categoryL.expenselist)
{
mobile = mobile + expenseL.amountSpent;
}
NSString *mobileString = [NSString stringWithFormat:@"%.2f",mobile];
[self.expenseArray replaceObjectAtIndex:3 withObject:mobileString];
}
else if([categoryL.categories isEqualToString: @"shopping"])
{
for(ExpenseList *expenseL in categoryL.expenselist)
{
shopping = shopping + expenseL.amountSpent;
}
NSString *shoppingString = [NSString stringWithFormat:@"%.2f",shopping];
[self.expenseArray replaceObjectAtIndex:4 withObject:shoppingString];
}
else if ([categoryL.categories isEqualToString:@"others"])
for(ExpenseList *expenseL in categoryL.expenselist)
{
others = others + expenseL.amountSpent;
}
NSString *othersString = [NSString stringWithFormat:@"%.2f",others];
[self.expenseArray replaceObjectAtIndex:5 withObject:othersString];
NSLog(@"%@",othersString);
}
//NSLog(@"count %d", self.expenseArray.count);
}
}
/*
// Override to support conditional editing of the table view.
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
{
// Return NO if you do not want the specified item to be editable.
return YES;
}
*/
/*
// Override to support editing the table view.
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
if (editingStyle == UITableViewCellEditingStyleDelete) {
// Delete the row from the data source
[tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationFade];
}
else if (editingStyle == UITableViewCellEditingStyleInsert) {
// Create a new instance of the appropriate class, insert it into the array, and add a new row to the table view
}
}
*/
/*
// Override to support rearranging the table view.
- (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)fromIndexPath toIndexPath:(NSIndexPath *)toIndexPath
{
}
*/
/*
// Override to support conditional rearranging of the table view.
- (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath
{
// Return NO if you do not want the item to be re-orderable.
return YES;
}
*/
#pragma mark - Table view delegate
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
// Navigation logic may go here. Create and push another view controller.
/*
<#DetailViewController#> *detailViewController = [[<#DetailViewController#> alloc] initWithNibName:@"<#Nib name#>" bundle:nil];
// ...
// Pass the selected object to the new view controller.
[self.navigationController pushViewController:detailViewController animated:YES];
*/
}
@end
しかし、アプリを終了して再起動すると、すべてが想定どおりに更新されますが、削除後すぐには更新されません。なぜかわかりませんでした。また、これがコアデータを使用する正しい方法であるかどうかもわかりません。誰かが私を導くことができれば、事前に感謝します