I am new iPhone Developer. I am upgrading existing iPhone App. I am using Core Data Model to save data. In App, there is a 15 square boxes to add images. I am calling a Detached Thread to make a separate process. In this process, I am saving image into two size. I have added observer with image object and remove observer at last.

I am using this method to add Observer:-

[projectImage addObserver:self forKeyPath:@"fileName" options:NSKeyValueObservingOptionNew context:nil];

And this method for making separate Thread:-

[NSThread detachNewThreadSelector:@selector(addImage:) toTarget:self withObject:[dic retain]];

here AddImage is Method like:-

- (void) addImage:(NSDictionary *) dic {
   NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
   UIImage *image = [dic objectForKey:@"image"];
   projectImage = nil;
   projectImage = [dic objectForKey:@"managedObject"];
   [projectImage importImageData:image];
   [projectImage removeObserver:self forKeyPath:@"fileName"];   
   [pool drain];   
}

And dic is Dictionary

My problem is : It is Crashing after taking 4-5 images by Camera or Phone library.

If any can guide me to get rid to this problem.

Thanks in Advance

link|improve this question
feedback

2 Answers

You are leaking memory, and probably because of this your app will crash. I think the app runs out of memory and gets killed.

remove the [dic retain] from

[NSThread detachNewThreadSelector:@selector(addImage:) toTarget:self withObject:[dic retain]];

the object is retained by the method call. See the discussion of detachNewThreadSelector:toTarget:withObject:.

The objects aTarget and anArgument are retained during the execution of the detached thread, then released. The detached thread is exited (using the exit class method) as soon as aTarget has completed executing the aSelector method.

your call should be

[NSThread detachNewThreadSelector:@selector(addImage:) toTarget:self withObject:dic];
link|improve this answer
thanks fluchtpunkt for reply, i was doing this but it is not working, might be possible it is happening due to memory leak. – user864852 Jul 27 '11 at 11:54
can you give me any hint to make a method synchronized such a way it execute after that other process run...? and how can i call it ? I want to make this image saving method to execute at a time. – user864852 Jul 27 '11 at 11:56
feedback

if your app is crashing means their is some problem in your project.better to move it to trash and do the new one.be aware of that u should not do the same mistake again..

link|improve this answer
If they dont know what the problem is how can they avoid it? Unhelpful – Elmo Jul 27 '11 at 9:54
shut up............ – user857280 Jul 27 '11 at 10:10
feedback

Your Answer

 
or
required, but never shown

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