/ Published in: Objective C
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
-(UIWindow*) delegateWindow{ UIWindow *result = nil; Project1AppDelegate *delegate = (Project1AppDelegate*)[UIApplication sharedApplication].delegate; if(delegate != nil){ result = [delegate window]; } return result; } -(void)logMainWindowRect{ UIWindow *mainWindow = [self delegateWindow]; if(mainWindow != nil){ NSLog(@"Window Rect = %@",NSStringFromCGRect(MainWindow.frame)); } }