Development/iPhone
[옛 글] SimpleTableView - main.m
마즈다
2013. 7. 5. 13:01
반응형
최초 작성일 : 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;
}
반응형