Tagged Questions
0
votes
0answers
33 views
Using Core Data in iOS to display files
I am attempting to develop an iOS application. The application is similar to a typical Bible applications where there would be many data files, displayed one after the other. These files should be ...
0
votes
1answer
27 views
Managing version files of Core data model
During development process we keep on changing core data model file.Supposing we have many model files each built on previous version. Then At the time of submitting the app to appstore can I delete ...
0
votes
1answer
35 views
Core Data: move object from one persistent store to another
I'm using Core Data in my app and would like to export only some of the data and import it on some other device.
To avoid migration issues, I'd like to do the following:
Export:
create a second ...
0
votes
1answer
28 views
CoreData NSManagingContextDidSaveChangesNotification saves empty object iOS5
Before anyone suggests, we are using one managedObjectContext for [context save:&error];
We are saving a new object in Core Data with iOS5.
The issue is, the first time we save a new object, ...
-1
votes
1answer
58 views
How to add multiple attribute in Group by in core data
My requirement to get name,eMail,mobileNo,sum(amount) from a table by core data.
If I go for sql then my sql query looks like this:
select name,eMail,mobileNo,sum(amount) amt1 from T1 GROUP BY ...
0
votes
2answers
109 views
Ordered Sets and Core Data (NSOrderedSet)
I have a list of share prices with the properties dateTime and value.
Currently I am sorting the share prices when fetching them using a sort descriptor.
Now, I would like to change my code and ...
0
votes
1answer
82 views
Searching CoreData with the maps visibleRegion
I have several thousand locations stored in CoreData and I would like to search for locations that are within a Google Maps visibleRegion. I was previously doing a search with a bounding box but the ...
5
votes
3answers
230 views
Core Data - break retain cycle of the parent context
Let's say we have two entities in a Core Data model: Departments and Employees.
The Department has a one-to-many relationship to Employees.
I have the following ManagedObjectContexts:
- Root: ...
2
votes
3answers
61 views
CoreData - when do I save?
I understand how to use CoreData, but I'm confused when it's best to save the data. When they press the home button? On every interaction in case the app crashes?
0
votes
1answer
29 views
UIManagedDocument failing to initialize, Giving me “Ghost Entity” error
Tried to build a project with a coredata model, got this error
'NSInvalidArgumentException', reason: 'Can't merge models with two different entities named 'Patient''
On a whim, I deleted my ...
0
votes
2answers
55 views
Core Data - Multiple Entries for a Single Entity
So in my app I have an Entity called Cards and another called Transactions.
The Transaction entity have the attributes: Date, Location and Amount. So if a user spends his money in 10 locations, I ...
0
votes
2answers
59 views
Storing file path in core data throws exception
I am trying to store the file path of files that are in the device's documents folder in a core data entity, it is inserting properly but when i am trying to fetch records using a predicate on the ...
3
votes
1answer
251 views
iCloud ubiquityIdentityToken equivalent in iOS5
In iOS6, this method returns an id unique to each iCloud account:
[[NSFileManager defaultManager] ubiquityIdentityToken]
In iOS5, the only way to check whether iCloud is available is by using:
...
1
vote
0answers
109 views
App Crashes Unexpectedly during object mapping using Restkit for IOS
I am using restkit 0.10.2 for my app. i have different tables in which data are fetched from Server and stored into DB.
I have three tables One Master Table and two Child Tables. Both Child Table ...
0
votes
0answers
54 views
Reload sqlite database with NSPersistentStoreCoordinator
So I'm using CoreData with an sqlite database in the bottom. The database is maintained in the Library directory, and the database is loaded when the application starts (by setting up the ...
1
vote
1answer
170 views
iOS background save in Core Data
I want to ensure that my main thread never blocks, that's why I want to do my Core Data saves in the background.
I've been reading the Apple docs together with this link (and many others, but I found ...
3
votes
0answers
150 views
Fetched Property works in iOS5 but not iOS6
I am having a serious issue within my CoreData database. I have created a One To Many relationship between 2 tables and added a Fetched Property on the Table containing all unique values. All code ...
0
votes
1answer
82 views
NSFileProtectionComplete with core data
I want my CoreData file to be accessible only when device is in foreground in iOS5+ .(According to the WWDC 2011 Lecture#208) I have set the entitlement as in How do I add Data Protection Class ...
1
vote
2answers
46 views
NSFaultingOrderedSet in iOS
I am using CoreData objects in iOS.
A product has subproducts
@property (nonatomic, retain) NSOrderedSet *subProducts;
For some reason, for one of the products , instead of getting a ...
0
votes
2answers
459 views
How to clear/reset all CoreData in one-to-many realationship
I am using coreData, with one -to-many realtionship, I have a folder entity and a file entity. A folder can have many files and so on.
So, I have two ViewControllers, FolderViewController and ...
0
votes
1answer
153 views
Use of managed object context in background and main thread
I have a function being called on click of button. Further there is method [self getData] called from this method , which updates values in db using core data.
Also, I have a background thread ...
1
vote
1answer
314 views
Core Data Sort By Multiple Sort Descriptors WIth CaseInsensitiveCompare
I have a Word : NSManagedObject subclass that I'm trying to group by the first letter of the word. In each section I'm then trying to sort by the length property while maintain the alphanumeric sort ...
0
votes
1answer
64 views
Check BOOL value with aggregate functions in NSPredicate
I have two entities called folder and file, Folder has one to many relationship with file entity. File entity has a property called completedStatus which is a BOOL. I need to check which all files ...
1
vote
1answer
172 views
Loading Core Data From Large JSON Causing App To Crash
I'm attempting to populate CoreData from a JSON file that consists of 170,000 plus dictionaries. The parsing of the json goes quick but when I start trying to add to CoreData I'm blocking the main ...
1
vote
1answer
158 views
Passing Core Data objects--segue does not update U.I. on first try
I'm having a strange issue with updating the U.I. after a segue. It's a pretty standard design: the user selects a cell in a tableview, this triggers a segue to a detail screen which reflects the ...
-1
votes
1answer
16 views
Copying the old data model file into a new project for lightweight core data migration
I am learning Core Data Migration, and i mistakenly made some changes to my current schema file itself. But, I do have a backup copy of that project, which uses the previous schema. Now, i do not want ...
0
votes
1answer
29 views
mutating method sent to immutable object with userInfo (null)
I want to clear all the data by fetch all records and delete them one by one:
- (void) clear{
for (Program *program in [self getAllProgram]){
[managedObjectContext deleteObject:program];
...
2
votes
1answer
85 views
What's wrong in this NSFetchRequest?
Simple question. Could anyone tell me what's wrong with this piece of code?
+ (NSManagedObject*) managedObjectWithServerId:(NSInteger)serverId inManagedObjectContext:(NSManagedObjectContext*)context{
...
0
votes
1answer
142 views
Bug in iOS coredata objectWithID when moving objects between contexts
I am observing a weird bug in iOS using core-data.
Basically, my setup is as follows-
Have 2 NSManagedObjectContexts, tempContext and mainContext.
I use tempContext as a temporary 'scratchpad' for ...
1
vote
1answer
145 views
Move rows to bottom in a TableView which uses CoreData
In my app I have a folder-file (one-to-many relationship).So when I open my app, my firstViewController contains all files and when clicked on each folder, it opens a tableViewController displaying ...
1
vote
1answer
133 views
Passing objects in CoreData
I am using CoreData in my application and it is a one-to-many relationship, I have two entities called folders and files. So a folder can have many files. So my first view controller shows all folders ...
0
votes
0answers
64 views
Core data updates in background
I am working on an app which uses core data. User starts a specific scenario and data is filtered for each scenario. When user comes back to the home screen, I reset the managedObjectContext and fetch ...
0
votes
1answer
129 views
Core Data with icloud in IOS5
Is it possible to build an application using core data with iCloud Feature for IOS 5 Deployment? If any Please Provide me some explanation.
0
votes
3answers
319 views
NSManagedObjectContext performBlock and dispatch_group_t
The problem is I need to modify (update/create/delete) from 0 to 10000 NSManagedObject's subclasses. Of course if it's <= 1000 everything works fine. I'm using this code:
+ ...
1
vote
3answers
1k views
Magical Record not saving
I am using Magical Record:
https://github.com/magicalpanda/MagicalRecord
I am trying to save records that I get the from my website to the sqllite database using Magical Record and Core Data, but I ...
0
votes
1answer
126 views
how to manually insert data in core data
I am using core data first time. so I know how to insert data manually in core data.
First of all I have .csv file but I don't know how to insert data into core data from this .csv file
My entity ...
0
votes
0answers
624 views
2 - Assertion failure in -[UITableView _endCellAnimationsWithContext:]
2012-11-19 13:55:32.503 Note Collector[8980:c07] * Assertion failure in -[UITableView _endCellAnimationsWithContext:], /SourceCache/UIKit_Sim/UIKit-1914.84/UITableView.m:878
2012-11-19 13:55:32.509 ...
2
votes
3answers
116 views
iOS Bottleneck: Global variable vs. Core Data or Properity Lists
I'm new to iOS & Cocoa. My question isn't about how to make something work, but more about design to improve UX & performance.
I'm adding features to an existing app. Currently, the app has ...
0
votes
2answers
219 views
What's the correct approach to setup CoreData app with iOS 5 and RestKit
Hi all I've built a couple of apps with iOS5 and now I'm about to dive in CoreData.
What's the correct approach? Lot's of guides refer to an old XCode version where in project creation wizard the ...
1
vote
1answer
132 views
iOS - Initial Loading Large Amounts of Data
I am working on a B2B app that clients will need to download a sizable chunk (504 KB) of JSON data from their servers and then locally process to JSON into core data. It's about 4000 records and it ...
0
votes
1answer
137 views
Core Data update in UITextField delegate causes crash
I am working on app and simply editing the cell text field and at finish editing, I am trying to update coredata but app get stack and some time it give SIGSTOP and sometime it says unable to allocate ...
0
votes
1answer
489 views
iPhone:core data example working in ios 6 simulator but not in ios 5
I am working on application in which I have used core data and the app should be running in ios 6 and lower versions. I have used the code of ray wanderlich tutorial but I am able to fetch the data in ...
1
vote
1answer
285 views
[NSManagedObject name]: unrecognized selector sent to instance 0x6b77240'
Error ::: 2012-11-07 16:07:31.360 Random Date[1100:c07] -[NSManagedObject name]: unrecognized selector sent to instance 0x6b77240
2012-11-07 16:07:31.363 Random Date[1100:c07] * Terminating app ...
1
vote
2answers
104 views
Adding a float attribute to an entity in coreData and increment it on every addition of new Object
I am new to coreData,I am working on a sample application where I have added a float type attribute called displayOrder to an entity called "Test". I want to increment this display order on adding ...
0
votes
1answer
139 views
Reorder of cells in CoreData using Fetch ResultsController
I am working on how to reorder cells in CoreData using FRC, I came across many posts which suggest to use a order attribute and update this accordingly, one such code is here below
While inserting ...
0
votes
1answer
122 views
How to perform reodering of cells in One-to-many relationship in CoreData
I am learning coreData and I am new it, I have created a one-to-many relationship of boss and employee, (i.e one boss and many employees). So I am showing all the bosses on firstTableView and when the ...
1
vote
0answers
85 views
NSFetchedResultController won't show data in IOS 5
I am new to IOS development. At the moment I'm building an iPad app, what gets data back from the webservice, saves it in a core database and shows it in a tableview using NSFetchedResultController.
...
0
votes
1answer
228 views
iOS Core Data: distinguish multiple objects in Transformable attribute
I am trying to implement simple Core Data class to store and retrieve different Language strings(array) downloaded from the server. So far I have created created Core Data template in App Delegate, ...
0
votes
0answers
68 views
Core data crash
Help!!!I have a one-to-many relationship.
Why does [self.menu addSubMenuObject:newSubMenu] not work?
ManagerCoreData * managerCoreData = (ManagerCoreData *)[ManagerCoreData sharedInstance];
...
0
votes
0answers
77 views
Core data does not load data in IOS 5
I am following the tutorial of Core Data from the Paul Hegarty from Stanford University. In this tutorial he is making a flickr Fetch to get some recent photos. But something strange is happening when ...

