반응형
최초 작성일 : 2010/03/21 09:45
SimpleTableView_Prefix.pch
//
// Prefix header for all source files of the 'SimpleTableView' target in the 'SimpleTableView' project
//
#ifdef __OBJC__
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
#endif
==================================================================
main.m
int main(int argc, char *argv[])
{
//자동으로 메모리를 관리할 NSAutoreleasePool 인스턴스 생성
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
//애플리케이션 시작
int retVal = UIApplicationMain(argc, argv, nil, nil);
//pool에 등록된 모든 객체의 메모리 해제
[pool release];
return retVal;
}
반응형
'Development > iPhone' 카테고리의 다른 글
[옛 글] [APIs] UINavigationController (0) | 2013.07.08 |
---|---|
[옛 글] SimpleTableView - SimpleTableViewAppDelegate (0) | 2013.07.08 |
[옛 글] SimpleTableView - 애플리케이션 스크린샷 (0) | 2013.07.05 |
[옛 글] TableViewSuite - Readme (0) | 2013.07.05 |
[옛 글] Hello World Sample - 최종 정리 (0) | 2013.07.05 |