Is it possible to add a subview over the window from a uiviewcontroller and then removing that also?
Thanks Pankaj
Not sure what you mean...
[self.view addSubview:yoursubview]; [yoursubview removeFromSuperview];
Over the window:
[[[UIApplication sharedApplication] keyWindow] addSubview:yourview];