Macintosh 썸네일형 리스트형 Objective-C 첫 예제 모든 프로그래밍이 그러하듯 텍스트 출력부터. Objective-C의 헤더 파일 확장명은 .h이고, 소스 파일 확장명은 .m이다.test.m#import 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; } 더보기 이전 1 다음