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

예제9

[옛 글] 아이폰 달력 앱 - 첫 발자국 최초 작성일 : 2010/05/01 17:37 일단 처음으로 아이폰에서 동작하는 앱을 하나 만들었네요.단순히 달력 기능입니다. 음력 표시되는... 전체 계획의 극히 일부만 완성된 상태입니다.계획된 대로 전체 애플리케이션이 완성되면앱스토어에 올림과 동시에 만들어진 앱의 소스를 가지고강좌...라기 보다는 어떻게 만들었는지 그 과정을 연재하도록 하겠습니다. 아직 언제 완성이 될지 기약이 없지만 최대한 서둘러서소기의 성과를 달성하도록 해야겠습니다. 기대해주세요~^^;;; 2013. 7. 16.
[옛 글] SimpleSectionedTableView - RootViewController 최초 작성일 : 2010/04/17 04:21 RootViewController.h @interface RootViewController : UITableViewController {NSArray *regions;}//지역 객체를 담을 배열 선언@property (nonatomic, retain) NSArray *regions; @end RootViewController.m #import "RootViewController.h"#import "SimpleSectionedTableViewAppDelegate.h"#import "Region.h"#import "TimeZoneWrapper.h" //어떤 경우에 사용되는지 잘 모르겠음…???NSString *localeNameForTimeZoneNameComp.. 2013. 7. 16.
[옛 글] 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.
[옛 글] [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.
[옛 글] 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.
[옛 글] Hello World Sample - 최종 정리 최초 작성일 : 2010/03/20 09:59 Hello World 정리 처음으로 맥을 접하고 처음으로 아이폰을 접하고 처음으로 Objective-c를 접해봤다. 아직도 전체적인 구조를 파악할 수 있지는 못하고 다만 단편적인 하나 하나에 대한 의미를 알아가는 단계이기에 부족하기도 하고 또 잘못된 내용도 있을지 모르겠다. 이제 겨우 가장 기초적은 샘플 하나를 분석해 본 것 뿐이므로 많은 기대를 하지 않는 것이 좋겠다. 특히 인터페이스 빌더의 설명같은 경우 애플리케이션을 구현하면서 공부한 것이 아니라 역으로 이미 만들어진 애플리케이션을 인터페이스 빌더로 열어 확인한 내용이다보니 더더욱 분석하기가 어려웠다. 오늘의 이 내용이 내일 더 나은 결과를 위한 밑거름이 될거라 생각하며 첫 예제 분석에서 중요하다고 생각.. 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.
반응형