Contents

Views 1160 Comment 0
Atachment
Attachment '1'
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print

AppDelegate.h

#import <UIKit/UIKit.h>
#import "MainViewController.h"

@interface AppDelegate : UIResponder <UIApplicationDelegate>

@property (strong, nonatomic) UIWindow *window;
@property (strong, nonatomic) UINavigationController *navigationController;
@property (strong, nonatomic) MainViewController *mainViewController;

@end


AppDelegate.m

#import "AppDelegate.h"

@interface AppDelegate ()

@end

@implementation AppDelegate


- (BOOL)application:(UIApplication *)application
    didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    // Override point for customization after application launch.

    self.window = [[UIWindow alloc]
        initWithFrame:[[UIScreen mainScreen] bounds]];
    self.window.backgroundColor = [UIColor whiteColor];
    
    self.mainViewController = [[MainViewController alloc] init];
    self.navigationController = [[UINavigationController alloc]
        initWithRootViewController:_mainViewController];
    //[self.navigationController setNavigationBarHidden:YES];
    self.window.rootViewController = _navigationController;
    [self.window makeKeyAndVisible];
    
    return YES;
}

...

@end



?

List of Articles
No. Category Subject Author Date Views
129 Develop [vbs] CD롬 뱉는 스크립트.. hooni 2003.04.23 11742
128 Develop [vb] 64bit RSA 프로그램 소스 ㅋㅋ file hooni 2013.04.23 8237
127 Develop [vb] 문자열에서 태그 제거함수 (Visual Basic) file hooni 2013.04.23 22683
126 Develop [vb] 비주얼 베이직 131페이지 hooni 2003.04.23 58165
125 Develop [vb] 비주얼 베이직 141페이지 hooni 2003.04.23 59028
124 Develop [vb] 비주얼 베이직 173페이지 hooni 2003.04.23 54922
123 Develop [vb] 비주얼 베이직 205페이지 hooni 2003.04.23 56144
122 Develop [vb] 비주얼 베이직 순위 정렬 루틴 hooni 2003.04.23 58451
121 Develop [vb] 비주얼 베이직 자격증용 ㅎㅎ hooni 2003.04.23 61595
120 Develop [vb] 비쥬얼 베이직 기출 문제 연습 hooni 2003.04.23 55248
119 Develop [vb] 비쥬얼 베이직 기출 문제 연습2 hooni 2003.04.23 54456
118 Develop [vb] 비쥬얼 베이직으로.. hooni 2003.04.23 53135
Board Pagination Prev 1 ... 83 84 85 86 87 88 89 90 91 92 ... 98 Next
/ 98