-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMyDocument.m
51 lines (42 loc) · 1.22 KB
/
MyDocument.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
//
// MyDocument.m
// CollectionViewCoreDataBug
//
// Created by Michael Markowski on 05.08.11.
// Copyright Artifacts - Fine Software Development 2011 . All rights reserved.
//
#import "MyDocument.h"
@implementation MyDocument
@synthesize arrayController;
- (id)init
{
self = [super init];
if (self != nil) {
// initialization code
}
return self;
}
- (IBAction)addAction:(id)sender {
NSManagedObject *item = [NSEntityDescription insertNewObjectForEntityForName: @"Item" inManagedObjectContext: [self managedObjectContext]];
NSManagedObject *relatedItem = [NSEntityDescription insertNewObjectForEntityForName: @"RelatedItem" inManagedObjectContext: [self managedObjectContext]];
[item setValue:relatedItem forKey:@"relatedItem"];
// [arrayController rearrangeObjects];
}
- (IBAction)infoAction:(id)sender {
NSLog(@"arraycontroller contents: %@", [[arrayController arrangedObjects] description]);
}
- (NSString *)windowNibName
{
return @"MyDocument";
}
- (void)windowControllerDidLoadNib:(NSWindowController *)windowController
{
[super windowControllerDidLoadNib:windowController];
// user interface preparation code
}
- (void) dealloc
{
[arrayController release];
[super dealloc];
}
@end