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

샘플9

[옛 글] [Methods] SimpleSectionedTableView - 모델 클래스에 사용된 메서드 정리 최초 작성일 : 2010/04/11 09:00 사용된 메서드 정리 메서드명 : - (NSArray *)componentsSeparatedByString:(NSString *) separator기능 : separator를 구분자로 하여 분리된 배열을 반환함선언된 클래스 : NSString 메서드명 : + (NSArray *)knownTimeZoneNames:기능 : 시스템이 알고있는 모든 time zone의 ID를 문자열 배열로 반환함선언된 클래스 : NSTimeZone 메서드명 : + (id)timeZoneWithName:(NSString *)aTimeZoneNZme기능 : 인자로 넘어온 ID와 일치하는 time zone 객체를 반환선언된 클래스 : NSTimeZone 메서드명 : - (id)initWi.. 2013. 7. 12.
[옛 글] SimpleSectionedTableView - Region, TimeZoneWrapper 최초 작성일 : 2010/04/10 16:06 SimpleSectionedTableView에 추가된 내용 중 하나는 Model 클래스가 추가되었다는점이다.Model Object는 데이터를 캡슐화 하는 핵심적인 역할을 하고 있으며 그 데이터 접근할수 있는접근자를 제공한다. 모델 클래스들은 전통적인 행동 방식(getter를 이용하는 것?)을 내에서 값을 추가할 수 있다.Region 클래스는 시스템으로부터 시스템이 알고있는 TimeZone 정보를 가져와 지역 이름을 추출하여 Region 인스턴스들이 담긴 regions 배열을 만들고 regions 배열에 담긴 각각의 Region 인스턴스에 있는 TimeZoneWrappers라는 인스턴스 배열 변수에 TimeZoneWrapper 클래스의 인스턴스를 설정하여 넣는.. 2013. 7. 12.
[옛 글] SimpleSectionedTableView - 소스 목록 최초 작성일 : 2010/04/10 07:19 xcode의 Groups&Files 창에 보여지는 소스 목록 SimpleTableView와 크게 달라진 것은 Model 클래스들이 분리되었다는 것이다. main.m과 SimpleSectionedTavleView_Prefix.pch는 앞의 SimpleTableView와동일하므로 분석을 생략함. 2013. 7. 12.
[옛 글] SimpleTableView - Interface Builder 최초 작성일 : 2010/04/10 06:24 인터페이스는 단순히 윈도우 위에 TableView를 얹은 정도이므로인터페이스 빌더상에 별다른 설정은 없다. 2013. 7. 12.
[옛 글] SimpleTableView - RootViewController 최초 작성일 : 2010/03/28 08:38 RootViewController.h //UITableViewController를 상속받은 RootViewController 선언@interface RootViewController : UITableViewController {//클래스 변수로 NSArray 타입의 timeZoneNames선언NSArray *timeZoneNames;} //접근자와 변경자 자동 선언 키워드@property (nonatomic, retain) NSArray *timeZoneNames; @end RootViewController.m //선언부 import #import "RootViewController.h"#import "SimpleTableViewAppDelegate.h" @.. 2013. 7. 8.
[옛 글] 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.
[옛 글] TableViewSuite - Readme 최초 작성일 : 2010/03/21 08:53 ### TableViewSuite ### ================================================================================ DESCRIPTION: This sample shows how to use UITableView through a progression of increasingly advanced applications that display information about time zones. 이 예제는 time zones에 관한 정보를 출력하는 점차로 개선되는 애플리케이션을 통해 UITableView의 사용법을 보여준다. * The first example shows a simple li.. 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.
반응형