Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 6th, 2012  |  syntax: None  |  size: 0.30 KB  |  hits: 11  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  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];