Views 1067 Votes 0 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
325 Develop [c] 민수형 소스(도메인소켓포함) file hooni 2013.04.23 6522
324 Develop [c] 민수형 libipq 샘플 소스 ㅋㅋ hooni 2003.04.23 14112
323 Develop [c] 문자열 컨트롤 함수로 만든 프로그램들.. file hooni 2003.04.23 6786
322 Develop [c] 문자열 치환해주는 str_replace() 함수 file hooni 2013.04.23 7385
321 Develop [c] 문자열 처리(문자열 자르기) hooni 2003.04.23 8637
320 Develop [c] 문자열 처리 관련 함수들 설명 hooni 2003.04.23 7997
319 Develop [c] 문자열 정렬 함수 qsort() hooni 2003.04.23 8228
318 Develop [c] 문자열 자르는 함수(strtok) 예제 hooni 2013.04.23 12176
317 Develop [c] 문자열 라이브러리 최신버전 file hooni 2003.04.23 7188
316 Develop [c] 문자열 뒤집기 초간단 샘플 코드 ㅎㅎ hooni 2013.04.23 7114
315 Develop [c] 문자열 뒤집기 (문자열 거꾸로 출력하는 간단소스) hooni 2003.04.23 9982
314 Develop [c] 문자열 str_shift 예제.. file hooni 2013.04.23 6841
313 Develop [c] 무선 Radius Server 자료.. file hooni 2013.04.23 7260
312 Develop [c] 메시지큐(Message Queue) 설명.. (joinc) hooni 2013.04.23 14273
311 Develop [c] 메세지 프로그램 (Server - Agent - Client) file hooni 2013.04.23 6457
310 Develop [c] 맵서치인 듯(옛날 컴에서 찾은 자료) file hooni 2013.04.23 6904
Board Pagination Prev 1 ... 52 53 54 55 56 ... 74 Next
/ 74