My situation: I create an object of singleton class. Object has information about Ivars of another object and some NSStrings field.

-(id)init
 {
      [super init];     

      objectID=[NSString stringWithString:@"sqlRowId"];
      tableNameForBO=[[NSString stringWithString: @"BOComment"] lowercaseString];
      ivarListForBO=class_copyIvarList([BOComment class], &ivarCount);

      return self;
 };

When I call the object it works fine in first time. All fields has right information. But when loading is finished (after applicationDidFinishLunching) application calls _UIApplicationHandleEvent witch delete information in all fields but objectID.

So in program I have pointer to this singleton object that stay constant but his fields has totally wrong information.

NSZombie says:

-[CFString respondsToSelector:]: message sent to deallocated instance 0x6022a10

-[CFString _cfTypeID]: message sent to deallocated instance 0x6022a10

-[CFString _cfTypeID]: message sent to deallocated instance 0x6022bb0

And application crashes with program received signal: “EXC_BAD_ACCESS”.

What can cause this? Haven't any idea.

Thank a lot!

link|improve this question

79% accept rate
There is more that confuse me: if declare static variable (pointer to that object) in -> MAIN.m <- then it works fine! So there is the question: why? – Gusev Andrey Feb 22 '11 at 18:17
Best if you add this as an update to your original question. – Nick Toumpelis Feb 22 '11 at 18:17
feedback

2 Answers

It seems that your objects have been inadvertently released. You need to make sure that you allocate/retain/release your objects appropriately.

Check out this very nice intro on iOS memory management: http://interfacelab.com/objective-c-memory-management-for-lazy-people/

link|improve this answer
feedback
up vote 0 down vote accepted

Thanks a lot! Problem was in not appropriate allocation of object's fields.

After change init method that how:

-(id)init { self=[super init];

objectID=[[NSString alloc] initWithString:@"sqlRowId"];
tableNameForBO=[[NSString alloc] initWithString: [@"BOComment" lowercaseString]];       
ivarListForBO=class_copyIvarList([BOComment class], &ivarCount);    
insertClauseForBO = [[NSString alloc] initWithString: [self getInsertClauseForBO]];

return self;

};

it works just fine!

Thanks a lot for the answer it really helped - knew where to look.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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