Core Data is Apple's object-persistence framework for Cocoa and Cocoa Touch for managing model objects of a MVC (model-view-controller) design.
0
votes
0answers
5 views
Editing data in a CoreData application
I have an application with 4 view, the main View is a view that contain my table view with some data, in this view I have also one button the Add button to add new data, if I click on a row I have the ...
0
votes
0answers
22 views
iOS class selection NSDictionary or Core Data
I am learning iOS programming and wouldn't mind an opinion or two on the most appropriate class to use for my
application, NSDictionary or Core Data. I would like to be able to create an array of ...
0
votes
0answers
6 views
Restkit fetching empty results on subsequent fetches
I am facing a really weird problem and I hope someone can help me.
I am using Restkit (0.20) with CoreData setup, and I have all the attribute/relationship mapping setup for responseDescriptor. ...
0
votes
0answers
29 views
Archiving NSArray that contains dictionaries
I am trying to save an NSMutableArray in CoreData. The Array contains objects NSDictionary
NSDictionary has following Structure
valueDict =
{
FloorId = F0001;
endCoordinates = "NSPoint: ...
1
vote
2answers
18 views
How do I utilize CoreData when moving from collection view to detail view
I have an IOS app that is using RestKit to pull json formatted data from a server into a CoreData Entity. Some of the attributes of the entity help populate a collection view with an image and title ...
0
votes
2answers
30 views
How to Insert Core Data Record Related to Another?
Currently I have two entities in my model; Module and Level. They have one to many relationship e.g. a level can have a lot of modules. How can can I insert data so that they are related one to ...
0
votes
1answer
27 views
Objective-c. Fetching distinct values of attribute from core data
i have run into a problem that i can not solve. I have a "database" - read core data - where i have attribute that holds a value and level.
Something like that
value -------- level
55 -------------4
...
0
votes
0answers
11 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
39 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
38 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
0answers
22 views
core data sometimes got crash unable to open database
on osx 10.8.3 on large data sets (like 2.5G) i got sometimes that crash:
After some investigating i got that this may be because i got opened files limit in my app. Bu i have no idea how to fix it, i ...
0
votes
1answer
27 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 ...
0
votes
1answer
21 views
withSortColumn sorting failed with 2 digits
In my application i have used the the following code to set the array value from core data,i want add the array value withSortColumn reference @"companyNormalOrder". The @"companyNormalOrder" having ...
0
votes
1answer
28 views
CoreData error failed
In my application i have used following code with core data,
#import <Foundation/Foundation.h>
#import <CoreData/CoreData.h>
@interface Adduser : NSManagedObject
@property (nonatomic, ...
0
votes
0answers
42 views
NSMutableArray does not save objects retrieved from the database (core data)
I have a very strange problem, and it's driving me crazy.
The senario is an app with local database (core data), which receives updates from a server, I'll post here only the most relevant code.
...
0
votes
2answers
45 views
Perform search using NSFetchedResultsController
I have a search bar with my table view, but I am not using a UISearchDisplayController to display the results, instead I'm using my table view.
The code I have appears to work, but I wonder if it is ...
0
votes
2answers
16 views
Can I pass operators into an NSPredicate via the format string?
I'm trying to create the following predicate
[NSPredicate predicateWithFormat:@"name != %@ AND date %@ %@", varName, operator, varDate]
Where varName and varDate are NSString and NSDate objects ...
0
votes
1answer
12 views
Unit tests not seeing new version of managed object model
I've created a new version of my managed object model (new xcdatamodel file), updated the xcdatamodeld to have the new version as "current", and added a attribute (hasStartWithFlow) to an entity ...
0
votes
0answers
7 views
MagicalRecord save with different threads
I used to create entity this way:
[MagicalRecord saveUsingCurrentThreadContextWithBlock:^(NSManagedObjectContext *localContext) {
Phone *phone = [Phone MR_createInContext:localContext];
...
2
votes
1answer
52 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 ...
0
votes
1answer
20 views
How to make predicate to Entity's customized property
This question is an ongoing one for my previous question.
I want to make a predicate to filter the entity by my customized property, this is the entity class
@interface Expense : NSManagedObject
...
0
votes
2answers
29 views
Add data to CoreData entity the first time the app is loaded?
There is some data that I need to store in a CoreData entity. Whether I can pre-store data in the CoreData, which is carried over when it's distributed. Or if I need to run something when it loads to ...
1
vote
0answers
24 views
+250
Core Data NSManagedObject isFault inside prepareForDeletion
I'm doing some processing inside - prepareForDeletion in a NSManagedObject. However when I try to access some properties of this class they are returned to me as nil (even though I know they are not ...
0
votes
1answer
28 views
MKNetworkKit doesnt retreive any images
NSString *pictureUrl = [[[oneUserDict objectForKey:@"picture"]objectForKey:@"data"]objectForKey:@"url"];
[[AppEngine sharedEngine]imageAtURL:[NSURL URLWithString:pictureUrl] onCompletion:^(UIImage ...
1
vote
1answer
34 views
CoreData: persistent and temporary storage
I plan to use CoreData API for storing files in my iOS app. I want to have two stores of data: first, large, but possibly temporary, for caching; and second - small, but I want to ensure the data is ...
1
vote
1answer
54 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
21 views
light weight migration core data
I am using core data for storing. For the second release of my app I created a new entity in my core data,so I used light weight migration. By this my schema was change but user data got lost. How can ...
0
votes
2answers
18 views
How to load image to collectionview from url obtained from json
I have an IOS app that is using RestKit to pull json formatted data from a server into a CoreData Entity. One of the attributes in the data is a URL for the image associated with the particular ...
0
votes
0answers
33 views
Core Data and iCloud: let's find a workaround
I have tried to make iCloud sync working with my Core Data based app but unfortunately the support for Core Data is very buggy and let's be honest: it can't be used in a real app yet.
But this is ...
1
vote
2answers
27 views
Core Data Fetch with filter on entity and entities relationship, to many
I need help with a fetch request that filters children where children and parent have a many to many relationship. all the examples I've found are for one to many relationships.
Playlists can ...
0
votes
1answer
25 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
1answer
32 views
Ramifications of choosing fmdb over core data
I'm just learning cocoa (desktop) development, and yes I have read over and over than core data is 95-99% of the time all you need.
BUT, at least at a theoritical level, could someone explain to me ...
0
votes
1answer
28 views
CoreData and dispatch_async using Object from main managedObjectContext
I need to change some entities from the background thread, so I do the following:
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
NSManagedObjectContext *parent ...
0
votes
1answer
35 views
Core Data context and singleton data controller
I have a singleton data controller to hold an array of objects. See for example bananas question for my solution: singelton dataController banansArray
Now I want to save the array of bananas to ...
1
vote
1answer
36 views
NSDictionary and Core Data
Please I am trying to gain some knowledge in core data. I have so far gotten the hang of creating entities and adding, retrieving and deleting values from this entity.
My question is the following. ...
0
votes
0answers
17 views
core data lazy load setContent set content
I have a core data situation, and display performance is a problem.
I'll use the department-employee case with some additions.
company has departments (1-many)
department has employees (1-many)
...
0
votes
2answers
36 views
Download images from web and save on iPhone
I have to download images from web and save them on iPhone and then use that images for views. Main problem is: how should I save that images on iPhone ? Which method should I use ? NSUserDefaults, ...
0
votes
2answers
49 views
Cannot use a predicate that compares dates in Magical Record
I am making a method that will remove all of my NSManagedObjects that were not updated in the last sync.
- (void)removeStaleObjects {
// Delete objects that have not been updated in this ...
0
votes
0answers
22 views
New managed object context on background missing data
I'm adding records successfully to a persistant store and then periodically I'm uploading these to our server using some web services via a background thread. Although I can't recreate the situation ...
0
votes
1answer
30 views
Delete existing data from another view
I trying to build app like native Apple Notes. And I have a question\problem.
In apple notes when you open already existing note again and delete all text from it - note deleting and data from core ...
1
vote
1answer
36 views
Core Data: Fetch objects from multiple ManagedObjectContexts
My iPad App is using throw-away child ManagedObjectContexts for editable ViewControllers, so I can easily discard the edited data.
Now I want to show a list of all objects in an overlay view, ...
0
votes
0answers
16 views
Core Data save inside prepareForDeletion of object causes object to get deleted
I have implemented - prepareForDeletion for a NSManagedObject Group so that I can do some processing logic when a Group is about to get deleted.
It is to my understand that the NSManagedObject is ...
1
vote
1answer
53 views
deleteRowsAtIndexPaths freezes the UITableView
I've got an UITableView with Core Data.
When I insert new records or update an existing record everything goes well and the UITableView updates automatically, but when I delete a record the ...
0
votes
1answer
16 views
See the core data table in Device
In my App am using core data to store the data. Now I need to do the core data migration. To check the core data migration done properly I want to see the core data table is there any way to do that ?
...
0
votes
2answers
40 views
Data model persistence considerations in iOS
I've been working with sqlite database in my iOS app for data persistence, and I'm now trying to decide if it is worth to learn Core Data. I've been reading some documentation and posts regarding its ...
0
votes
0answers
22 views
icloud and core data merge issues
I am using iCloud and Core data. I am Facing multiple problem
1)My first problem is related to merging. That is
Let iPad sync with iPhone data.
While iPad has no Internet access but iPhone has ...
0
votes
3answers
44 views
How to pass object between several views in storyboard, iOS Dev
I have searched for this but the answer is too simple to satisfy me :(
I want to pass a NSManagedObjectContext from TabBarController to almost every view controllers in my app. In detail, my ...
0
votes
1answer
38 views
Core Data migration
I started my project without ticking the Use Core data option. Later I started using core data. But now i need use Core data migration. After searching i got this this code
NSMutableDictionary ...
0
votes
3answers
28 views
Update table view after delete core data in child view
I need to update table view in MainView controller with UITableView, after deleting item in DetailView controller with button for delete, using core data.
Core data structure: ...
0
votes
0answers
32 views
CoreData version migration fails in addPersistentStoreWithType:configuration:URL:options:error:
I've got a strange bug in CoreData version migration. It crashes and I'm absolutely stumped.
I've added two new attributes to one child entity in version 2 of my xcdatamodel and set it as current ...


