Guest User

Untitled

a guest
Aug 6th, 2012
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. How to change the display level of two UIWindow with same windowLevel ?
  2. UIWindow *windowNormal2 = [[UIWindow alloc] initWithFrame:CGRectMake(40, 40, 100, 200)];
  3. windowNormal2.backgroundColor = [UIColor blueColor];
  4. windowNormal2.windowLevel = UIWindowLevelNormal + 1;
  5. [windowNormal2 makeKeyAndVisible];
Advertisement
Add Comment
Please, Sign In to add comment