Contents

Views 1169 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
85 Develop [js] 모바일웹에서 이미지 저장하는거 (context menu) 막기 hooni 2013.04.23 26431
84 Develop [ios] Objective-C 문자열 조작 메서드 hooni 2013.04.23 26512
83 Develop [android] 단일 Thread 환경의 안드로이드에서 Handler를 사용 file hooni 2013.04.23 26580
82 Develop [ios] NSData 클래스에 대해 (NSData <-> char*) hooni 2013.04.23 26599
81 Develop [c#] 간단한 소켓통신 예제.. hooni 2013.04.23 26741
80 Develop [node.js] 지금 하고 있는거.. file hooni 2013.04.23 27025
79 Develop [doc] 테크니컬 레포트 (BHO 취약점을 이용한 공격) 2 file hooni 2013.04.23 27147
78 Develop [ios] UDID와 UUID (디바이스의 Unique Identifier) file hooni 2013.04.23 27409
77 Develop [ios] 참고할만한 좋은 예제 소스.. hooni 2013.04.23 27409
76 Develop [android] 멀티터치(Multi touch) 부분 구현 ㅋㅋ file hooni 2013.04.23 27484
75 Develop 웹페이지 성능 테스트 툴 설명 hooni 2013.04.23 27528
74 Develop [c] fork() 시스템 콜 사용 방법. hooni 2003.04.23 27653
Board Pagination Prev 1 ... 59 60 61 62 63 64 65 66 67 68 ... 71 Next
/ 71