I have a problem,
I am using following code the application work fine.
Support *panoView=[[Support alloc] initWithFrame:CGRectMake(0, 0, 768, 1024)];
self.view=panoView;
Note: panoView is UIView class
Instead of this I am using following code:
Support *panoView=[[Support alloc] initWithFrame:CGRectMake(0, 0, 768, 1024)];
self.background_image_view=panoView;
This produce following error : Applications are expected to have a root view controller at the end of application launch but app not load.
I need to display panoView inside new background_image_view. Any one help me.