Code Monkey home page Code Monkey logo

Comments (7)

martijnwalraven avatar martijnwalraven commented on June 10, 2024

That crash is probably due to the unconditional cast (as Round). This isn't specific to Meteor but is a common issue when working with Core Data. It usually means the managed object model hasn't been configured correctly. Make sure you include the module name if you're mapping to a Swift class (see image).

screen shot 2015-01-21 at 08 16 17

from meteor-ios.

trevorbroad avatar trevorbroad commented on June 10, 2024

Thanks, you were on the right track. In the end, I had to add the following above the Round class to stop it from crashing.

@objc(Round)

The problem remains though, the first snippet above now saves to meteor, but still doesn't save to core data. Any other ideas?

from meteor-ios.

trevorbroad avatar trevorbroad commented on June 10, 2024

I got it working without resorting to @objc(Round) using your first solution. Still no luck getting data to save to Core Data though

from meteor-ios.

martijnwalraven avatar martijnwalraven commented on June 10, 2024

Good to hear that worked. What do you mean exactly by not saving to Core Data? If the change happens on the server, saving seems to be working. Do you mean the UI doesn't update? Do you use NSFetchedResultsController or manual observing to respond to updates?

from meteor-ios.

trevorbroad avatar trevorbroad commented on June 10, 2024

How can I insert a new managed object into an existing managed object as a subobject using your implementation, and have it map correctly to the meteor collection? For example...

let round = NSEntityDescription.insertNewObjectForEntityForName("Round", inManagedObjectContext: self.managedObjectContext) as Round
round.name = "foo"

let subObject = NSEntityDescription.insertNewObjectForEntityForName("subObject", inManagedObjectContext: self.managedObjectContext) as SubObject
subObject.name = "bar"

round.subObject = subObject
{
 name: "foo",

 subObject: {
  name: "bar"
 }
}

from meteor-ios.

martijnwalraven avatar martijnwalraven commented on June 10, 2024

There is no support for nested objects right now. Unlike regular Mongo data modelling, using top level objects seems preferable in Meteor for most relationships, because that makes it much easier to deal with subscriptions and authorization for example. But there are use cases for nested objects, so if I have a need for it I might add it later.

Note that you can map value objects like dictionaries and arrays to nested JSON structures, if you set the type to 'Transformable' in the managed object model. I use this to map the 'profile' named values in the 'users' collection for example.

from meteor-ios.

trevorbroad avatar trevorbroad commented on June 10, 2024

That makes sense as to why I was having issues, thanks

from meteor-ios.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.