Tagged Questions
1
vote
1answer
35 views
How to set an inverse relationship in XCode
This is a silly question but I seriously didnt find an answer...
I have a one-to-many relationship from the Entity "Events" to "Discounts" and I set a relatioship like this in XCode,
I need that ...
-7
votes
2answers
51 views
Creation of Core Data in iOS [closed]
Hi Iam new to this Objective C, I need to know how to work with the core data, can any one help me ..
0
votes
1answer
57 views
Programming a button press in one view controller, to load and save a cell in a different table view controller
In my application I have a number of view controllers, all of which have a favorite button on. When the favorite button is pressed, I want some information about the view controller to be saved in a ...
0
votes
1answer
45 views
CoreData between app updates, signal a default-data refresh
when dealing with CoreData, I've run into a few problems I'm trying to nip in the bud for future proofing the system out of the gate. The simple fact of the matter is that I've never done anything ...
0
votes
0answers
48 views
Core Data won't create DataStore.sqlite in Documents
I want Core Data to create a DataStore.sqlite DB in the Documents directory of my Mac, but for some reason, it doesn't. Why?
Following is the code from AppDelegate.h and .m
AppDelegate.h
#import ...
0
votes
1answer
31 views
How to ensure that certain ID shows up only once in core data?
So far, this is what I tried:
+(NSManagedObject *) getObjectWithStringOfValue:(NSString *) Value fromTable:(NSString*) table withAttribut:(NSString *) AttributName
{
NSManagedObject * buffer=nil;
...
0
votes
0answers
61 views
Why executeFetchRequest sometimes (though rarely) fail to order the fetched Request?
PO(request); //show the request object
fetchedObjects = [moc executeFetchRequest:request error:&error];
PO(fetchedObjects); show the fetched object
2013-01-18 10:43:04.001 BadgerNew[71177:c07] ...
0
votes
0answers
25 views
baby in terms of programming [closed]
The apps I have made are really only apps from the books that I used to learn. Well currently I'm working on my first app and I want it to be able to transfer data to a computer. Basically I have ...
0
votes
2answers
80 views
Unable to save data to Core Data second related entity
I have an iPad app, built with XCode 4.5, Storyboard, Core Data (using MagicalRecord) and iOS 6. I have two Entities, each with multiple attributes. The first entity has a one to many relationship ...
0
votes
0answers
36 views
Having issue with xcdatamodeld file while using svn
In my project , i have been using core data for data i need to store permanently in my application. And i am using beanstalkapp svn account for version control. Whenever i made change in xcdatamodeld ...
0
votes
1answer
36 views
Why do I have extraneous objects in my Core Data object?
I have an app which uses Core Data. I have defined the Entities with their respective attributes several times. Now, I pretty much have it finalized, looking like this:
I deleted the old sqlite ...
0
votes
1answer
49 views
Is Everything Declared as Class must be an NSObject?
I make a category like this:
@interface NSObject (defaultSelector)
+(NSString *) defaultSelector;
-(NSString *)defaultSelector;
@end
Then, I used it like this:
-(void)prefetchShortcutWithTable: ...
0
votes
0answers
21 views
How to get many objects and preserve the ordering in coreData?
If I do:
predict=[NSPredicate predicateWithFormat:@"%K in %@",AttributName,Values];
I get many objects.
However, if the underlying data is multiple ordered relationship the order the data is given ...
0
votes
1answer
80 views
Getting started with MagicalRecord
I have an iPad app, using Storyboards, XCode 4.5 and iOS 6. I am trying to get started using MagicalRecord. I have everything installed and it builds correctly. I have created an empty entity ...
1
vote
0answers
90 views
Controlling an NSArrayController and Core data relations
I am new to stackoverflow because I almost never ask questions in forums as there are plenty of questions out there already answered. However my head is about to explode from trying to figure out how ...
-3
votes
1answer
41 views
How to Merge datas in Xcode?
Can anyone tell how to merge two files in xcode as i have created two datas for "line graph" and "bar graph" and now i need to present a view with both the datas on same graph ?
How to merge a Bar ...
0
votes
1answer
56 views
Core Data ios, Data got inconsistant on crash
I'm working on an app for ios6 which is using core data. Some time when my app crashes the data got inconsistent and some time when I terminate the app. I'm save the context each time I make change in ...
0
votes
1answer
115 views
Core data relationships: popup button can select a relationship but the name is not displayed
After a lot of time wasted due to a core data relationship fault, now I'm able to bind a popup button cell to an entity relationship.
The only problem now is that when I select and browse all the ...
0
votes
1answer
65 views
Application crashes because it is unable to create NSPersistentStoreCoordinator with a nil model
I created a single view application that was running fine, but when I add core data in it just by copying the same code that Xcode generates in Empty Project using Core Data.
But my application ...
2
votes
3answers
152 views
Core Data error 'Misconfigured Enity: In the Compound Indexes attribute…is not a valid property' after adding and then removing indexes
I was playing around with compound indexes for one of my entities. I added 2 (I simply clicked the 'add' button twice) and removed them right away (by clicking the remove button). Now when I build, I ...
2
votes
2answers
352 views
Core data relationship fault : null key
I have an entity named Person that may have one home, and an entity named Home that may have one to N homes:
Then I have two array controllers:
Homes Controller, bound with managed object ...
0
votes
1answer
212 views
Cannot create BOOL from object
I am following the guide cocoa programming for mac os x, 4th edition.In the 32th chapter I messed up the code, and I didn't backup it, so I had to download the solutions from big nerd ranch.
The ...
2
votes
1answer
120 views
MagicalRecord iCloud backup
I use MagicalRecord for data store (CoreData).I want use for data backup iCloud but I don't know how to read and write data to iCloud with using MagicalRecord. Anybody know how to use iCloud backup ...
0
votes
1answer
367 views
How do I resolve this deadlock that happen ocassionally?
I have one managedObjectContext with concurency type of NSMainQueueConcurrencyType
+ (NSManagedObjectContext *)managedObjectContextMainThread
{
static NSManagedObjectContext ...
0
votes
3answers
518 views
Can't find mapping model for migration - UIManagedDocument Core Data Migration
I have two versions of my model Model001.xcdatamodel and Model002.xcdatamodel. These two are in the Model.xcdatamodeld bundle.
I also have a Model001to002.xcmappingmodel which is not part of the ...
9
votes
3answers
2k views
Bug in iPhone Simulator 5.1 with Xcode 4.5 using UIManagedDocument
I have a very weird problem I've spent the last two days trying to solve... I had a piece of code that was working perfectly fine on Xcode 4.4 and iOS 5.1 Simulator, using the 5.1 SDK. After I updated ...
