Re: Issue with Core Data Model

2013-01-12 Thread Chris Hanson
On Jan 11, 2013, at 8:12 AM, Alex Zavatone z...@mac.com wrote: Back as of Xcode 4.2, many classes would not implicitly support po in the debugger unless you wrote your own description method to return the properties you wanted to expose. What leads you to this conclusion? Many, but not

Re: Issue with Core Data Model

2013-01-12 Thread Chris Hanson
On Jan 11, 2013, at 5:22 AM, Amy Gibbs a...@willowtreecrafts.co.uk wrote: One of the issues is I called and attribute of an entity 'description'. This didn't appear as an error in Xcode 3 which I was using, and didn't create a problem using the app. Now in Xcode 4 the model won't even open

Issue with Core Data Model

2013-01-11 Thread Amy Gibbs
I've got an app that I write just for me. I've been using it for a couple of years on 10.5. Everything has now been upgraded and I'm on 10.8. I need to upgrade the app as it doesn't work properly. One of the issues is I called and attribute of an entity 'description'. This didn't appear as an

Re: Issue with Core Data Model

2013-01-11 Thread Alex Zavatone
Is this a collision with a class's description method? Back as of Xcode 4.2, many classes would not implicitly support po in the debugger unless you wrote your own description method to return the properties you wanted to expose. On Jan 11, 2013, at 8:22 AM, Amy Gibbs wrote: I've got an

Re: Issue with Core Data Model

2013-01-11 Thread Amy Gibbs
Hi, To be honest I don't really know. I have an entity called Idea, and a string attribute of 'description' Xcode4 really doesn't like this and crashes. I can change the attribute name in a new data model, but can I then remove the old models and just leave the mapping models to deal with

Re: Issue with Core Data Model

2013-01-11 Thread Alex Zavatone
Yeah, I never touched data models in Xcode 3 so I can't comment on that but I think you are on to something. If you are able to bulk change description to myDescription does the problem go away? How easy is it to duplicate your project, try those changes, remove the old models and see if this

Re: Issue with Core Data Model

2013-01-11 Thread Amy Gibbs
If I used xml in the store it would probably be easy but it's an sql store to complicate matters. I'll maybe try just duplicating it and trying to build to see if that works, Thanks, Many Thanks Amy Gibbs On 11 Jan 2013, at 4:24PM, Alex Zavatone z...@mac.com wrote: Yeah, I never touched

Re: Issue with Core Data Model

2013-01-11 Thread David Delmonte
I think that now, entities must start with a capital letter.. On Jan 11, 2013, at 8:22 AM, Amy Gibbs a...@willowtreecrafts.co.uk wrote: I've got an app that I write just for me. I've been using it for a couple of years on 10.5. Everything has now been upgraded and I'm on 10.8. I need to

Re: Issue with Core Data Model

2013-01-11 Thread Mike Abdullah
On 11 Jan 2013, at 16:35, David Delmonte ddelmo...@mac.com wrote: I think that now, entities must start with a capital letter.. Amy has an *attribute* named description; not an entity. ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please

Re: Issue with Core Data Model

2013-01-11 Thread David Delmonte
note to self: learn to read. On Jan 11, 2013, at 11:59 AM, Mike Abdullah cocoa...@mikeabdullah.net wrote: On 11 Jan 2013, at 16:35, David Delmonte ddelmo...@mac.com wrote: I think that now, entities must start with a capital letter.. Amy has an *attribute* named description; not an entity.