I am new to Core Data programming and am trying to work out the concepts involved. I have an object called a Lease
that has a many-to-many relationship with Apartment
objects. Given a Lease
object, how do I get a count of the related Apartment
objects or an NSArray of the related objects?
Thank you!
~~Garth