Is it possible to add a subview over the window from a uiviewcontroller and then removing that also?
Thanks Pankaj
[[UIApplication sharedApplication].keyWindow.subviews.firstObject addSubview:yourView];
if you are using an iPad in landscape you should add your view over ther window's first subview.
@Yuvaraj.M this is the solution to your problem