Tagged Questions
0
votes
1answer
26 views
Core Data Conundrum: Cannot call NSFetchedResults twice
I have a custom UITableViewController, called mainViewController.
It has a public property in the header file
@property (strong, nonatomic) NSMutableArray *someGroups;
This property is set in the ...
-1
votes
0answers
79 views
Core Data: “EXC_BAD_ACCESS” when using plain int data type
I have some doubts regarding storing plain "int" or "short" (int16_t) attributes inside the "Core Data" data management framework (on iOS 6 in my case).
I tried using it various ways and found it ...
0
votes
0answers
20 views
CoreData iCoud-Sync: Updates do not take effect
I m trying to add a iCloud-Sync to one of my existing apps, using CoreData. I implemented my CoreDataStack as a Singleton looking like this:
Header:
#import <Foundation/Foundation.h>
#import ...
0
votes
1answer
51 views
What is the difference between self.managedObjectContext and managedObjectInstance.managedObjectContext?
So, I have the CoreData entities Book, Bookmark, Highlight. A book contains information about the book and an NSSet of Bookmarks.
I want to delete the bookmarks present in one book and then ...
0
votes
1answer
41 views
design & logic - Most efficient way to save reordered UITable rows
The blue Table is called Routine and the other one is called Exercise.
Routine.exercise has a Many-to-Many relationship with Exercise.routine.
I have a UITableView that the user can re-arrange the ...
0
votes
1answer
28 views
How to remove an object and all its relationships from the objects its related to in coredata
The blue Table is called Routine and the other one is called Exercise.
Routine.exercise has a Many-to-Many relationship with Exercise.routine.
I want to delete a Routine and I want all exercises ...
2
votes
1answer
60 views
What are the advantages of NSBinaryStoreType?
NSPersistentStoreCoordinator has four store types: NSSQLiteStoreType, NSXMLStoreType, NSBinaryStoreType, and NSInMemoryStoreType. I understand XML store can be handy for debugging, or In Memory when ...
1
vote
1answer
56 views
Sorting NSFetchedResultsController on a instance variable [duplicate]
I am using NSFetchedResultsController to show restaurants in a table view. I had restaurants location saved in database and user location saved in a variable.
Now my problem is how i can show the ...
0
votes
1answer
26 views
See saved class from NSManagedObjectContextDidSaveNotification?
I wonder if it's possible to somehow see to saved NSManagedObject classes from a NSManagedObjectContextDidSaveNotification?
I have tried something like this:
[[notification userInfo] ...
0
votes
2answers
23 views
How to check whether an Entity is related or not to another entity
I am new to Core Data
I have 2 Entities Routine and Exercise that are related as Routine.exercise and Exercise.routine.
User Routine has a name and so does user Exercise.
I tried
and also tried jsut ...
1
vote
0answers
23 views
Can't save core data managed object context when device passcode locked
I'm creating a persistent store coordinator like this:
NSURL *storeURL = [[self applicationDocumentsDirectory] URLByAppendingPathComponent:@"Mydatabase.sqlite"];
NSError *error = nil;
...
0
votes
2answers
48 views
Memory increasing every core data iteration
Having a memory issue while iterating through my core data objects. As it loops through CFData (store) keeps increasing until the application crashes. Shouldn't core data release the memory after ...
0
votes
3answers
88 views
NSSortDescriptor - Sort descriptor based on another array
I hava a core data application. And I want to fetch one kind of object, User. User have the property userId.
I have another array with userIds, [1, 4, 3, 5]. And I would like to create a ...
0
votes
1answer
26 views
iOS PFBatchFaultingArray - causing bad UITableView performance(?)
I use Core Data with a NSFetchResultController in one of my apps. I'm looking for ways to improve performance, and one problem I have is with my UITableViewController. It's a bit jaggery. I've used ...
1
vote
1answer
36 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
33 views
iOS NSManagedObjectContext - is it possible to get or send a notification when all changes is saved?
I use Core Data - and I have registered and is listening for NSManagedObjectContextDidSaveNotification:s I have a collection of data (from JSON), that I want to save, and after all objects is saved, I ...
0
votes
1answer
77 views
Core Data: NSManagedObjectContext Not Saved / Fetch Request Fails Until App Quits & Relaunches
I've got a Core Data backend that's exhibiting some strange behavior. The first time I run my app (in the simulator) my NSFetchRequest will never find matches even when given identical items multiple ...
0
votes
1answer
53 views
CoreData concurrency - do I need a separate NSOperationQueue?
I have a CoreData app in which I have two NSNanagedContext:s for concurrency. One for the main thread and one for my background thread.
In one of my view controllers I also have a separate ...
0
votes
2answers
28 views
Possible to move NSmanagedObject to another NSManagedContext?
I have two NSManagedContext's, one parent and one child that i use for concurrency. Specified like this:
self.managedObjectContext = [[NSManagedObjectContext alloc] ...
1
vote
1answer
44 views
Correct way of dealing with Core Data NSManagedObjects in an iOS application
When I have worked with Java applications involving a database and ORM (object relationship manager) the architecture was usually separated so when working with database entities in the database layer ...
0
votes
1answer
54 views
NSPredicate/TableView only displays one item, why?
I'm working on an app where I have two entities, Post <-->> StreamType. When I create posts I assign StreamType:s like this:
// streamType == one of my default streamTypes
[post ...
0
votes
1answer
52 views
Core Data: Find the property of NSEntity Objects in NSMutableSet
How can I efficiently find the attributes of an NSEntity object in a set ?
I have implemented it this way, but it seems to be inefficient. Is there a faster, easier, more efficient method of finding ...
0
votes
1answer
40 views
Best alternative for 'long term' storing model-view-controller data in Objective-C/ios
I am planning on creating my app in a 'Model-View-Controller'(MVC)-style, and in the end, for me at least, this means that all data is stored in the controller-class. Let's say I have a class Player, ...
0
votes
0answers
69 views
Core data - iPad - Fetch request on Table with > 300.000 Rows
I have the following Coredata model:
Warengruppe contains the name of a specific product and WarengruppeVK is a disposal of a Warengruppe, it contains the selling price of a product and some other ...
1
vote
1answer
77 views
Cannot update NSManagedObject because of NSObjectInaccessible exception
I am building an app for displaying assets (PDF, Video, Etc).
It starts by downloading a JSON and parsing it into Core Data Objects <-- This part works fine.
These objects are a hierarchical set ...
0
votes
1answer
51 views
iphone/ios - core data relationship concept
I have a concept problem and I hope you guys can help me! On my app the user and his contacts can create events and share it.
here is my app model:
On App start I create my Profile (User) and fill ...
1
vote
1answer
72 views
CoreData best practice implmentation on the UI side and in subproject
app scenario: on the UI, a button is tapped to get contact list from the server. the request goes to subproject which does the download and parsing and returns the result thru its delegate to the UI. ...
0
votes
2answers
75 views
NSPredicate with multiple statements
I have NSPredicate with four statements/parameters. It seems like all of them isn't "included". It looks like this:
predicate = [NSPredicate predicateWithFormat:@"user.youFollow = 1 || user.userId = ...
0
votes
1answer
81 views
Core Data not automatically calling value transformer when getting / setting attribute directly in code
If I understand correctly, the idea behind Core Data transformable attributes is:
implement an NSValueTransformer subclass with returns [NSData
class] in +transformedValueClass along with its ...
2
votes
1answer
55 views
Sort NSFetchedResultsController result based on array?
I would like to construct a NSPredicate or NSSortDescriptor (Core Data search) that is based on the content of an array.
The array will consists of userId:s in the right order:
[1, 2, 5, 3];
I ...
0
votes
1answer
52 views
NSCFString _cfurl unrecognised selector sent to instance
I'm working with Core Data for ages. Currently I would like to learn more about UIManagedDocument. I've done several sample projects to learn more about it. Finally, I'm good to transfer this ...
-2
votes
1answer
65 views
Best Practice for Displaying Images on UITableView
I am making an app and facing following problem:
I am syncing with server parsing JSON to core data, I have some entities: Photo, Person and Newspaper. I also have 2 UITableViews where I am showing ...
0
votes
1answer
139 views
Saving Core Data when the user exits the application?
I am trying to save Core Data when the user presses the home button. I wanted to do this from -applicationDidEnterBackground: but it is not getting called. This maybe because you can't save Core Data ...
1
vote
3answers
56 views
Is there any way in iOS to browse through Core Data objects from the Detail View, a function similar to “Notes” app
I can't find much info about this, so I don't know exactly where to start. What I'm trying to do is to add a UIButton on my Detail View, so that when I'll press it, it will load the next Core Data ...
0
votes
3answers
217 views
EXC_BAD_ACCESS when trying to access a managed object property
I'm having some trouble dealing with Core Data+concurrency/nested MOCs (not sure which one I'm having problems with =P).
I have a method where I pass in a managed object ID (I checked that it's ...
0
votes
1answer
101 views
What is the difference between managed object context save and refreshObject:mergeChanges:
Hello what's the difference between
[self.context refreshObject:site mergeChanges:YES];
and
[self.context save:nil];
Sometimes I use them both, sometimes I use only save. It works in both ...
1
vote
1answer
43 views
How to retrieve data loss caused by an updated iOS app with incorrect CoreData schema
A mistake made to CoreData schema causes users with data using previous schema to no longer see the data after they upgrade their iOS app. What's the best way to recover the previous data?
0
votes
2answers
35 views
How to pass the model to a Controller in Core Data
Say I have a Core Data class called RecipeBook which has a property (relationship) called recipes, a NSSet of Recipe Objects.
I display the RecipeBooks on a UITableView and when the user taps on a ...
0
votes
3answers
224 views
Core Data NSValidationErrorObject, causes crash
I'm working on an app where I have Users, each User have a many-to-many relationship to followers. I'm currently having some problems with saving new user objects. The app craches on ...
0
votes
2answers
123 views
How can I setup a relationship in RestKit when the only relationship info I have is the JSON structure?
I am trying to create a hierarchy of Node entities in Core Data based on a JSON I retrieve from a web service.
Here is a sample of my JSON structure
http://cl.ly/image/0r2x3E210m1U
I cannot figure ...
0
votes
1answer
122 views
NSMergeConflict (two threads) - setting a merge policy doesn't solve
OK, this is driving me nuts.
I have two threads using a UImanageddocument, one on the main context where the user makes selections, the background thread with its own moc synchronizes the data with a ...
1
vote
1answer
51 views
NSPredicate comparing transformed CLPlacemark with another CLPlacemark
I'm saving CLPlacemark in Core data using NSValueTransformer. (so it's saved as NSData)
However I've come to a point where I need to filter the saved objects based on another CLPlacemark object.
...
0
votes
1answer
66 views
Why does Core Data Name the tables and attributes it creates in SQLite with a Z prefix?
Just curious to know why all the tables and Entities show up with a Z prefix in front of their names when i browse them with a SQLite database browser. The entity in my DB is named Assignment in code, ...
0
votes
1answer
53 views
iOS5: Determine if core data method is running in an asynch dispatch queue?
How can I tell if a method is running asynchronously or not?
I have several core data related methods which are sometimes called asynchronously via an asynch dispatch queue (GCD) and other times are ...
1
vote
1answer
85 views
Custom NSManagedObject setter in category
I have placed all of my NSManagedObject's custom logic in a category, so that I can regenerate the standard classes from my model if an when it changes.
One such piece of logic I require is a custom ...
1
vote
1answer
88 views
Custom Getter for Core Data attribute
I am introducing a soft-deletion pattern in my app. Instead of deleting objects from my context, I will be flagging them as 'deleted'. I'll use the example of (soft-)deleting ingredients from a recipe ...
1
vote
1answer
112 views
Dealing with background location updates and Core Data file protection
I've been experimenting with CLLocationManager's startMonitoringSignificantLocationChanges and I've run into some problems with Core Data. It turns out that since iOS 5.0, Core Data defaults to using ...
0
votes
1answer
62 views
Dispatch a NSNotification based on a custom core data setter
I want to change a UITableViewCell based on whether or not a file exists in the documents directory. I feel like this should be Notification Based and the notifications should be sent when the objects ...
0
votes
1answer
34 views
Tabulating data using Core Data - How to filter effectively?
I'm building an app for reporting sales figures. The Core Data structure is as follows
Product <---->> SaleAggregate
Customer <---->> SaleAggregate
SaleAggregate is the total ...
1
vote
2answers
188 views
NSPredicate returns different results on a fecthRequest vs filtering an array
I have a Core Data SQLite type store, one of the attributes in my entity called Article is a string attribute called markAsArchived.
What I would like to do is setup a fetch request to get the first ...


