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

Sample7

[옛 글] SimpleSectionedTableView - SimpleSectionedTableViewAppDelegate 최초 작성일 : 2010/04/11 10:40 SimpleSectionedTableViewAppDelegate.h @interface SimpleSectionedTableViewAppDelegate : NSObject {UIWindow *window;UINavigationController *navigationController;NSArray *list;} //retain방식으로 객체의 참조를 얻어옴. 자동으로 getter/setter 선언@property (nonatomic, retain) IBOutlet UIWindow *window;@property (nonatomic, retain) UINavigationController *navigationController;//copy방식으로 객체의 참조를 .. 2013. 7. 15.
[옛 글] SimpleTableView - SimpleTableViewAppDelegate 최초 작성일 : 2010/03/27 09:00 SimpleTableViewAppDelegate.h //애플리케이션의 delegate 클래스 NSObject를 상속받고 있으며//UIApplicationDelegate 프로토콜을 구현한다.@interface SimpleTableViewAppDelegate : NSObject {//인스턴스 변수 선언UIWindow *window; //계층적 데이터간에 이동을 표현할 수 있도록 해주는 뷰 컨트롤러 클래스UINavigationController *navigationController;} //접근자와 변경자를 자동 생성하도록 해주는 @property 키워드 선언@property (nonatomic, retain) IBOutlet UIWindow *window;@pr.. 2013. 7. 8.
[옛 글] SimpleTableView - main.m 최초 작성일 : 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 #import #endif ==================================================================main.m int main(int argc, char *argv[]){ //자동으로 메모리를 관리할 NSAutoreleasePool 인스턴스 생성 NSAutoreleasePool * pool = [[NSAutoreleasePool all.. 2013. 7. 5.
[옛 글] SimpleTableView - 애플리케이션 스크린샷 최초 작성일 : 2010/03/21 09:21 Time Zone 목록을 보여주고 스크롤이 되는 단순 테이블 2013. 7. 5.
[옛 글] Hello World Sample - 최종 정리 최초 작성일 : 2010/03/20 09:59 Hello World 정리 처음으로 맥을 접하고 처음으로 아이폰을 접하고 처음으로 Objective-c를 접해봤다. 아직도 전체적인 구조를 파악할 수 있지는 못하고 다만 단편적인 하나 하나에 대한 의미를 알아가는 단계이기에 부족하기도 하고 또 잘못된 내용도 있을지 모르겠다. 이제 겨우 가장 기초적은 샘플 하나를 분석해 본 것 뿐이므로 많은 기대를 하지 않는 것이 좋겠다. 특히 인터페이스 빌더의 설명같은 경우 애플리케이션을 구현하면서 공부한 것이 아니라 역으로 이미 만들어진 애플리케이션을 인터페이스 빌더로 열어 확인한 내용이다보니 더더욱 분석하기가 어려웠다. 오늘의 이 내용이 내일 더 나은 결과를 위한 밑거름이 될거라 생각하며 첫 예제 분석에서 중요하다고 생각.. 2013. 7. 5.
[옛 글] Hello World - MyViewController.h, MyViewController.m 최초 작성일 : 2010/03/12 09:43 MyViewController.h #import //UIViewController을 상속받고//UITextFieldDelegate 프로토콜을 따르는 뷰 컨트롤러 선언@interface MyViewController : UIViewController {//nib 파일 내의 객체와 연결될 인스턴스 변수 선언//텍스트필드와 라벨과 연결됨IBOutlet UITextField *textField;IBOutlet UILabel *label; //문자열 형식의 인스턴스 변수 선언NSString *string;} //@property를 통한 접근자와 변경자 선언 간편화@property (nonatomic, retain) UITextField *textField;@prope.. 2013. 7. 5.
[옛 글] 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.
반응형