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

XCode31

[옛 글] Hello World - HelloWorldAppDelegate.h, HelloWorldAppDelegate.m 최초 작성일 : 2010/03/12 07:21 HelloWorldAppDelegate.h //UIApplicationDelegate을 사용하기 위해 UIKit Framework를 삽입#import //MyViewController 클래스를 이 클래스 내에서 사용하겠다는 의미//우선은 MyViewController라는 이름의 클래스를 사용하겠다고 '예약'만 해놓은//상태로서 후에 MyViewController클래스의 구현이 변경되어도 이 클래스를//재컴파일 할 필요가 없다.@class MyViewController; //HelloWorldAppDelegate 선언. NSObject를 상속 받고 있으며//UIApplicationDelegate 프로토콜을 따른다.@interface HelloWorldAppDe.. 2013. 7. 5.
[옛 글] Hello World - main.m, ..._Prefix.pch 최초 작성일 : 2010/03/07 09:22 main.m #import int main(int argc, char *argv[]){ NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; int retVal = UIApplicationMain(argc, argv, nil, nil); [pool release]; return retVal;} - UIApplicationMain : 일반적인 iPhone 유저 인터페이스를 보여주기 위해, 유저 인터페이스 프레임워크를 실행하는 코드를 지님(모든 iPhone 애플리케이션은 main 함수에서 UIApplicationMain 함수를 실행해야 함) (1) UIApplication 객체와 애플리케이션 델리게이트 객체.. 2013. 7. 4.
[옛 글] Hello World - 소스 목록 최초 작성일 : 2010/03/07 08:30 * Classes : 모든 오브젝티브C 클래스들이 위치하는 곳, 우리가 작성할 코드 * Other Sources : Objective-C가 아닌 소스코드 - 프로젝트네임_Prefix.pch : (PreCompiledHeader) 프로젝트에서 사용하는 외부 프레임워크의 헤더 파일 목록 - main.m : 어플리케이션의 main() 메서드 * Resources : 어플리케이션의 일부로써 아이콘 이미지, 다른 이미지, 소리파일, 동영상 파일, 텍스트파일, 프로퍼티 리스트등을 포함 - 프로젝트네임ViewController.xib : 인터페이스 빌더에서 사용하는 정보 - 프로젝트네임-info.plist : 어플리케이션 정보를 담는 프로퍼티 리스트 - MainWindo.. 2013. 7. 4.
[옛 글] Hello World 최초 작성일 : 2010/03/06 09:44 ReadMe.txt ### HelloWorld ### ================================================================================설명:HelloWorld is a sample application that demonstrates the use of a text field to enter text using a keyboard, and a text label to display text. HelloWorld presents a simple interface. When the application launches, it displays a navigation bar containing a tex.. 2013. 7. 4.
반응형