본문 바로가기

Programming Language/Objective-C

Objective-C 첫 예제

336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.

모든 프로그래밍이 그러하듯 텍스트 출력부터.
Objective-C의 헤더 파일 확장명은 .h이고, 소스 파일 확장명은 .m이다.

test.m

#import <Foundation/Foundation.h>

int main(int argc, const char * argv[])
{
	NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];

	NSLog(@"tapitolife\n");
	NSLog(@"http://tapito.tistory.com/\n");
	NSLog(@"Hello, World!");

	[pool drain];

	return 0;
}