Hi My iPhone application is crashing when i tap on back button. I really don't know why this is happening. you can see in picture where my application is crashing.Image of Xcode

I have already checked that my button is connected only with one action. So I am failed to know exactly what is the problem.

If my question silly then plz forgive me, I am new to iPhone development So please help

Infect i am using printers with device and i think there is some problem

CAGradientLayer *gradient = [CAGradientLayer layer];
gradient.colors = [NSArray arrayWithObjects:(id)[[UIColor colorWithRed:0.8 green:0.8 blue:1 alpha:1] CGColor],(id)[[UIColor colorWithRed:0.05 green:0.05 blue:0.38 alpha:255] CGColor], nil];

//creating the iEpsonCom objects
m_deviceParams = [[DeviceParameters alloc] init];
m_device = [[Device alloc] init];

//registering the callback
[m_device registerCallback:self withSelector:@selector(callbackMethod:)];

//creating a thread for regularly checking the connection state
m_Thread = [[ThreadClass alloc] init];
[m_Thread registerCallback:self withSelector:@selector(connectionStateThreadCallbackMethod:)];
[m_Thread setMilliseconds:300]; //check the connection state every 300 ms
[m_Thread start];             //start the thread
link|improve this question

65% accept rate
What is happening in the dealloc method of the viewController you are dismissing? Maybe you're overreleasing something. – Alexander Feb 22 at 14:12
It would also help if you post some code who you setup showing/discarding this viewController. – rokjarc Feb 22 at 14:16
Thanx for reply, I am releasing my objects in dealloc but I commented out all the object release but its still crashing – Mashhadi Feb 23 at 7:29
feedback

1 Answer

It might be that your previous view controller is lost so first check, is the controller that you wish to pop to still in the view controller stack?

NSArray *arrView = [self.navigationController viewControllers];
NSLog(@"arrView %@",arrView);

If you can't see the view controller you want to pop to in that stack, it's likely that you either need to retain the controller. It might also be possible that you have released it too much, for example in the dealloc method.

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.