Revision: 42103
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at February 27, 2011 14:01 by takezou621
Initial Code
-(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));
}
}
Initial URL
Initial Description
Initial Title
ApplicationDelegateオブジェクトをå–å¾—ã™ã‚‹
Initial Tags
Initial Language
Objective C