Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This is probably a really simple question. I have a bunch of stuff in a sql lite db. I can retrieve that stuff and store it to an array just fine. When i iterate through that array with a for (MyCustomMo *mo in myDataArray) i can access the managed objects attributes just fine with e.g. mo.name.

So far everything is working ok, but...

Later when i get an object from that same array with [myDataArray objectAtIndex:index] i get a MyCustomMo* but when i try to access the attributes of that object i get null. Do i need to use [myDataArray objectAtIndex] somehow differently?

share|improve this question
did you try to force the retain of the object? it may be happening that the object is released from the memory somehow – holographix Feb 23 '12 at 11:13
How much "later"? What has happened in the meantime? What do you see if you log the value of the object you get out of the array the second time? – jrturton Feb 23 '12 at 11:14
@holographix I'm using ARC, if that matters. I don't have the code at hand right now, sorry. – JHollanti Feb 23 '12 at 11:17
@jrturton I retrieve the array in viewDidLoad and TableViewController uses it to populate rows. So, the delay is some milliseconds. – JHollanti Feb 23 '12 at 11:17
can you tell where are you using this for (MyCustomMo *mo in myDataArray) and [myDataArray objectAtIndex:index].. might be they are in two different class – Inder Kumar Rathore Feb 23 '12 at 11:19
show 3 more comments

1 Answer

up vote 2 down vote accepted

Okay, i got it. The reason it wasn't working was 'cause i was using a local ManagedObjectContext in viewDidLoad. I didn't come to think that ManagedObject needs the ManagedObjectContext when it lazily loads attributes.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.