0
votes

I want to show a popup view in my app in full screen, This screen contains tabbar and navigation bar both, i am getting the problem is when popup shows, it display only in middle of the screen, but I want to show in fullscreen and above on tabbar and navigationbar, If any person have any idea please provide yout thoughts and solution.I am attaching screenshot of my problem, plz give some solution.enter image description here

1

1 Answers

1
votes
 self.container = [[UIView alloc] initWithFrame:self.window.bounds];
 [self.container addSubview:self.alertView];
 [self.window addSubview:self.container];