본문 바로가기
  • SDXL 1.0 + 한복 LoRA
  • SDXL 1.0 + 한복 LoRA
Development/iPhone

[옛 글] SimpleTableView - main.m

by 마즈다 2013. 7. 5.
반응형

최초 작성일 : 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 allocinit];


    //애플리케이션 시작

    int retVal = UIApplicationMain(argc, argv, nilnil);


    //pool에 등록된 모든 객체의 메모리 해제

    [pool release];

    return retVal;

}


반응형