I’m still facing the problem when I launch my application in iPhone.
It shows the stack over flow by presentModelViewController because I’m using number of viewcontroller and calling the same viewcontroller from other viewcontroller but it gets terminated. Here I’m showing the code which I’m using in whole program to call other view controller
UV_AlarmAppDelegate *app7 = (UV_AlarmAppDelegate *)[[UIApplication sharedApplication]delegate];
[self presentModalViewController:app7.frmComparisionChartLink animated:YES];
[app7 release];
Still I’m releasing the pointer but still my app gets terminated.
You shouldn’t release the app delegate. In short, unless you
alloc,copyorretainan object you don’t need to release it.