NSManagedObject is a generic class that implements all the basic behavior required of a Core Data model object.
0
votes
1answer
32 views
Core Data: How to update an NSArrayController immediately after adding an NSManagedObject?
I am adding an instance in core data. The entity is represented by an NSArrayController. I would like to access the newly added instance through the controller.
A "Skill" instance is added and then I ...
0
votes
0answers
43 views
Function in NSManagedObjectClass is failing
I have a NSManagedObjectClass Favorites. In this class I have a method getFavoritesByArtistId You can see it over here.
-(Favorites *)getFavoriteById:(int)art_id{
Favorites *favorite;
...
0
votes
1answer
19 views
Core data crashing on delete of parent tablerow
I'm using ECSlidingViewController for a Path & FB style UI. Two UITableViews, one (The detail) is shown as the main view, the second (the master) is revealed as the sidemenu. Both powered by Core ...
0
votes
2answers
62 views
Context does not save the changes with error 1550
I'm trying to update an entity and save the changes. I'm getting always the following error:
The operation couldn’t be completed. (Cocoa error 1550.)
Method:
- (BOOL) ...
0
votes
0answers
39 views
core data - context don't save on second view
Ill try to explain my situation correctly.
I got 2 views. On my first view i got a table what lists Events. If i touch a cell, I get my EventOverviewView. So i have different behaviors on each view:
...
1
vote
1answer
32 views
Core Data and NSPredicate: Relationships
I have a basic entity that looks like the following:
The entity is the basic entity in a whole tree. Every GPNode has a parent GPNode and a set of children (GPNode). Theoretically the hierarchy ...
0
votes
1answer
53 views
CoreData predicate and fetch input takes way to long
I have this piece of code:
-(void)createArtistsFromArray:(NSArray*)jsonAttrArr {
NSError *fetchError = nil;
if (jsonAttrArr) {
for(NSMutableDictionary *dic in jsonAttrArr) {
...
0
votes
1answer
67 views
NSMangedObject not letting access an objects data
I am using CoreData and I have an NSManagedObject of type Thing. When I set a breakpoint I can console "po aThing" and it shows the data stored.
{
thingID = 5181c56063ab02c4d1000016;
...
0
votes
1answer
29 views
Why is “didChangeValueForKey:withSetMutation:usingObjects:” overriding discouraged
The apple documentation for NSManagedObject discourages overriding of "didChangeValueForKey:withSetMutation:usingObjects:".
Why?
As long as I call [super ..] this seems to work. Is there a reason ...
0
votes
2answers
21 views
Do NSManagedObjects have file urls?
I have an NSManagedObject *obj written to an NSManagedObjectContext. It has key/values which include a "data" key that returns a ~5-10mb size NSData *value. How do i get the url / file path where ...
1
vote
0answers
32 views
How to override hash and isEqual for NSManagedObjects?
We have a bunch of NSManagedObjects of various types.
Some of them have members that are NSSet's of other NSManagedObjects.
The problem is that I really need to override the hash and isEquals methods ...
0
votes
0answers
24 views
is there a way to clear -changedValues for only certain NSMangedObjects in Core Data?
my problem is about coordinating core data's awareness of changes in objects (including relationships) with posting this updates to a server.
For example:
Say I have a managed object with 2 to-many ...
0
votes
0answers
38 views
NSManagedObject attributes are reset to nil
I am creating an NSManagedObject subclass (Group), set some properties/attributes and then pass it on to a different object (where it is stored in a strong property). This object takes some of the ...
0
votes
1answer
29 views
nsmanagedobject relationship 0
Given a Core data app. I'd like to prevent a deletion if a relationship is not empty.
The best method seems to be with validateForDelete. Yet, when quering the size of the relationship it returns 0.
...
0
votes
2answers
46 views
is there a generic way to get a set of NSManagedObjects that where inserted or deleted from a Core Data relationship?
For example, say I have a User managed object with a friends relationship that goes User<->User many-to-many.
Now let's say for some user a, 2 users x and d are already in a's friend ...
0
votes
0answers
32 views
nsmanagedobject core data many-to-many relationship fault
In my CoreData app, all inverse many-to-many relationships have a relationship fault. -- observed using NSLog(@"%@", [self description]) . The fault appears after data is saved and subsequently ...
1
vote
2answers
41 views
EXC_BAC_ACCESS error when saving core data Boolean field
i am getting a EXC_BAC_ACCESS error when attempting to save a TRUE value into a managed object that contains a Boolean attribue.
id delegate = [[UIApplication sharedApplication] delegate];
...
0
votes
1answer
17 views
Custom UITableViewCell disappears when stored as memvar
I have a table view where each cell can play a message, similar to the voicemail table view from the iphone with the difference that the slider and progress labels are part of the cell:
The table ...
0
votes
2answers
37 views
How to fetch the last entry of each entity in core data iOS
I am making a chat application in iOS. I saved the last conversation of every friend. My core data entity has 3 fields - jID, message and timestamp. I don't set indexing on any field.I just want to ...
1
vote
1answer
64 views
Core data inserting rows and saving issue
I´m having some problems when saving data in core data and also with the rows organization and for better understanding of what my problem is, i´m going to explain what i have:
I have a main ...
0
votes
1answer
47 views
How To Match Data Types from Plist To Core Data
Given the following data structure:
<dict>
<key>Attachments</key>
<dict>
<key>__deferred</key>
<dict>
<key>uri</key>
...
0
votes
4answers
61 views
Objective C: Handling references to object deleted from in NSMutableArray
I have an NSMutableArray of Person(NSManagedObject) which is a property of a UIViewController PersonsViewController (presented as modal) and is used as a datasource of a UITableView to list all ...
0
votes
1answer
59 views
Save multiple attributes to same core data entity
I am first time user of core data and trying to learn the core data.
For start with employee example with two attributes.
1. name
2. salary
Now I done all necessary things needed for loading ...
1
vote
0answers
66 views
NSSortDescriptor with fetched property core data
I have an Agency entity that has a fetched property city. I'm performing a fetch request and I want my results to be sorted by agency's name and by city's name.
This is the part of old code. As you ...
0
votes
1answer
59 views
CoreData - One side of relationship is always nil
I have a CoreData project where there are two related entities (Users and Studies), these entities have a one-to-many relationship to another entity (UserStudy) which has a one-to-one relationship to ...
0
votes
0answers
26 views
nsarrycontroller nsobjectcontroller bind to contentset arrangedobjects
Given the situation,
There is a 1-many relationship, of descriptions per item. Both 'Description' and 'Item' are NSManagedObjects set up via a Datamodel.
In InterfaceBuilder
NSArrayController is ...
1
vote
1answer
41 views
is there a way to tell if an nsmanagedobject is in a context but is not part of any or a specific relationship?
For example, say I have the following entities:
Person
House
Car
And a person can have many houses and cars, while cars and houses can only have one owner.
Now consider the following scenario:
...
3
votes
3answers
64 views
Using NSManagedObject subclasses to transport persistent and non persistent data
I'm having some thoughts on how to use some core data's NSManagedObject subclasses to handle persistent data and non persistent data.
Let's say you have a recipe app displaying a list of your own ...
1
vote
1answer
56 views
Programatically get size of core data objects (byte)
Is there a way to get programatically the size of a core data objects (in bytes )?
0
votes
2answers
22 views
coredata- relationship failing to behave properly
This is structure of coredata architecture.
After adding entries to 'Artists', using them to newly added 'Album' entries is working perfect.
But the problem is as shown in img- 2 & 3, after ...
0
votes
1answer
45 views
Edit CoreData values
I've been trying to pass some data from a tableview to an editviewcontroller,to be able to edit it and save it, but I haven't been lucky
I don't know how to pass those values from the selected row to ...
1
vote
3answers
139 views
With CoreData, if I have an @dynamic property, can I override its getter just like it was @synthesized? (Lazy Instantiation)
Using CoreData I created an entity, then I subclassed it into its own file, where it has the @propertys, then it has the @dynamic parts in the .m file.
When I want something to have a certain value ...
1
vote
1answer
56 views
How should Core Data be used with my “unusual” object?
I have a grocery list app, and I am planning on using Core Data with it.
I have an grocery Item abstract class that has three subclasses: RecipeItem, QuickAddItem, and HybridItem. The first two ...
0
votes
1answer
41 views
Why does an unsaved managedObject lose its managedObjectContext
Currently, I am developing an app to book cars. All booking related data are stored in an entity 'Bookings'. As some attributes of 'Bookings' or relationships between 'Bookings' and other enties are ...
0
votes
1answer
56 views
Update CoreData iOS
i want to know how can I update a coredata record that was selected from a tableView
my code to save the coredata is:
- (IBAction)juardar:(id)sender {
NSUserDefaults *defs=[NSUserDefaults ...
0
votes
1answer
24 views
select a subset of nsmanagedobject using filterpredicate in coredata
There is a project with a Coredata datamodel. Each class has a relationship with Type. Type contains an attribute 'content', amongst other attrs.
It could be modelled with relationships as such
...
0
votes
1answer
62 views
UITableViewController application crashes
The UITableViewController freezes when scrolling or when viewDidAppear:. I see that when the problem starts, the app start to allocate objects uncontrollably.
I have the following project for iOS: ...
0
votes
0answers
16 views
Creating new project with same bundle identifier, creates a new app
I've created a new project to build a 2.0 version of my app 'from the ground up'
It's been set up with the bundle identifier of version 1.0 and I've even copied the Core Data model into the new ...
2
votes
1answer
86 views
Quickly filter parent NSManagedObjects based on possible property in child object
I'm working on a project that requires some fairly complex filtering. I have a Race NSManagedObject that has a number of Car objects attached. The Car can have multiple Position objects. For a given ...
0
votes
1answer
36 views
NSManagedObject as store with continuous analysis of raw data
This is similar to a question I asked before, but now that I've come much further along I still have a question about "proper" subclassing of NSManagedObject as I was told last night that it's a "bad ...
0
votes
2answers
41 views
Validate ManagedObject
I have an SearchStringTooltip ManagedObject. With property @dynamic tooltipText; (NSString)
I need dimanicly put new tooltips in DataBase, but i need only unique values (insensitive).
They could come ...
0
votes
1answer
95 views
Received memory warning when saving data on a background thread
I have many objects in NSMutableArray(>2500) and when I save it, app crashes (received memory warning x3).
NSLog(@"start");
NSInteger saveTemp = 0;
NSData *data = [NSURLConnection ...
0
votes
2answers
77 views
Execution_BAD-ACCESS when deleting data
I am showing data in table view using NSFetchedResultsController. Now when data reaches from server I need to delete all data present in the sqlite database.
Now when I delete data from database ...
0
votes
1answer
58 views
coredata-MO modification reflecting for each existing records in PS
I found many tutorials & articles over internet for core data but I am making sample app that is realtime & more useful to beginner. You can find the sample code here.
The core data structure ...
0
votes
1answer
35 views
Duplicate copies of NSManagedObjects
I have a number of View Controllers that need to show data from a Core-Data store.
Each of them fetch managed objects from the same context but for some reason the number of managed objects increases ...
1
vote
2answers
110 views
NSManagedObject; keep or load into a custom NSObject?
I'm using Core Data to store objects. I have a NSManagedObject Person and a NSObject Person. They both have the same attributes. The NSObject has some methods.
Right now, I search Core Data for Bob. ...
0
votes
1answer
74 views
CoreData one-to-many relationship issues
I am working with coreData one -to many relationship. For example folder - file. So what I want to do is that take a file from one folder and copy it to another folder.
So for example
folder A B
...
1
vote
1answer
48 views
Populating DetailController from UITableViewCell via segue
I am populating cells in a UITableView from CoreData and I have a question about how best to transfer the data I need to my DetailController (i.e. the viewController that shows when the cell is ...
1
vote
3answers
57 views
Cascading a property update to a related managed object
I have a managed object that has a one-to-one relationship to itself. An example of this could be a person object could be linked to one other person to represent a marriage.
If one of the properties ...
1
vote
1answer
52 views
MagicalRecord - shorthand works for some entities but not others
In my prefix file I have this:
#define MR_SHORTHAND
#import "CoreData+MagicalRecord.h"
//this causes an unrecognized selector sent to instance crash
Apple *apple = [Face ...


