iOS4_13
|
|
- 상아 애
- 5 years ago
- Views:
Transcription
1 . (Mail), (Phone), (Safari), SMS, (Calendar).. SDK API... POP3 IMAP, Exchange Yahoo Gmail (rich) HTML (Mail).
2 Chapter (Mail)., (Mail).. 1. Xcode View based Application (iphone) s. 2. sViewController.xib. 3. ( 13 1 ). Label TextField TextView( ) Button ttp://jpub.tistory.com/
3 sViewController.h. #import sViewController : UIViewController { IBOutlet UITextField *to; IBOutlet UITextField *subject; IBOutlet UITextView (nonatomic, retain) UITextField (nonatomic, retain) UITextField (nonatomic, retain) UITextView *body; -(IBAction) btnsend: (id) 5., File s Owner Control to subject, body. 6. Control File s Owner, btnsend:. 7. sViewController.m. #import to, subject, body; - (void) send to:(nsstring *) tostr withsubject:(nsstring *) subjectstr withbody:(nsstring *) bodystr { NSString * string = [[NSString alloc] initwithformat:@"mailto:?to=%@&subject=%@&body=%@", [tostr stringbyaddingpercentescapesusingencoding: NSASCIIStringEncoding], [subjectstr stringbyaddingpercentescapesusingencoding:
4 Chapter 13 NSASCIIStringEncoding], [bodystr stringbyaddingpercentescapesusingencoding: NSASCIIStringEncoding]]; [[UIApplication sharedapplication] openurl:[nsurl URLWithString: String]]; [ string release]; -(IBAction) btnsend: (id) sender { [self send to:to.text withsubject:subject.text withbody:body.text]; - (void)dealloc { [to release]; [subject release]; [body release]; [super dealloc]; 8. Command R , Send (Mail). (Mail) Send.
5 375 (Mail) send to:withsubject:withbody:. NSString * string = [[NSString alloc] initwithformat:@"mailto:?to=%@&subject=%@&body=%@", [tostr stringbyaddingpercentescapesusingencoding: NSASCIIStringEncoding], [subjectstr stringbyaddingpercentescapesusingencoding: NSASCIIStringEncoding], [bodystr stringbyaddingpercentescapesusingencoding: NSASCIIStringEncoding]]; mailto: URL. to subject, body. URL NSString stringbyaddingpercentescapes UsingEncoding:. (Mail) (singleton) sharedapplication, openurl: (Mail). [[UIApplication sharedapplication] openurl:[nsurl URLWithString: String]]; NOTE Send (Mail). (foreground).. MFMailComposeViewController..
6 Chapter sViewController.xib Round Rect button ( 13 3 ). 2. Xcode Frameworks Add Existing Frameworks..., MessageUI.framework ( 13 4 ). 3. sViewController.h. #import <UIKit/UIKit.h> #import sViewController : UIViewController <MFMailComposeViewControllerDelegate> { IBOutlet UITextField *to; IBOutlet UITextField *subject; IBOutlet UITextView (nonatomic, retain) UITextField (nonatomic, retain) UITextField (nonatomic, retain) UITextView *body;
7 377 -(IBAction) btnsend: (id) sender; -(IBAction) btncompose (id) 4., Compose Control File s Owner btncompose sViewController.m. #import to, subject, body; -(IBAction) btncompose (id) sender { MFMailComposeViewController *picker = [[MFMailComposeViewController alloc] init]; picker.mailcomposedelegate = self; [picker setsubject:@" subject here"]; [picker setmessagebody:@" body here" ishtml:no]; [self presentmodalviewcontroller:picker animated:yes]; [picker release]; - (void)mailcomposecontroller:(mfmailcomposeviewcontroller*)controller didfinishwithresult:(mfmailcomposeresult)result error:(nserror*)error { [controller dismissmodalviewcontrolleranimated:yes]; 6. Command R. Compose (Mail) ( 13 5 ).,.
8 Chapter 13 MFMailComposeViewController (modally),.. (Safari), URL openurl:. [[UIApplication sharedapplication] openurl:[nsurl ( 13 6 ). URL. [[UIApplication sharedapplication] openurl:[nsurl NOTE SMS URL. [[UIApplication sharedapplication] openurl:[nsurl
9 379 SMS ( 13 7 ).. NOTE SDK 4 SMS.. SMS 1.. sViewController.h. #import <UIKit/UIKit.h> #import <MessageUI/MFMailComposeViewController.h> #import <MessageUI/MFMessageComposeViewController.h>
10 Chapter sViewController : UIViewController <MFMailComposeViewControllerDelegate, MFMessageComposeViewControllerDelegate> { IBOutlet UITextField *to; IBOutlet UITextField *subject; IBOutlet UITextView (nonatomic, retain) UITextField (nonatomic, retain) UITextField (nonatomic, retain) UITextView *body; -(IBAction) btnsend: (id) sender; -(IBAction) btncompose (id) sender; -(IBAction) btncomposesms: (id) 2. sViewController.xib, Round Rect button Compose SMS. 3. Control File s Owner btncomposesms:. 4. sViewController.m. -(IBAction) btncomposesms: (id) sender { MFMessageComposeViewController *picker = [[MFMessageComposeViewController alloc] init]; picker.messagecomposedelegate = self; [picker setbody:@"this message sent from the application."]; [self presentmodalviewcontroller:picker animated:yes]; [picker release]; - (void)messagecomposeviewcontroller:(mfmessagecomposeviewcontroller *)controller didfinishwithresult:(messagecomposeresult)result { [controller dismissmodalviewcontrolleranimated:yes];
11 Command R SMS ( 13 8 ).. MFMessageComposeViewController SDK API. SMS,. SMS. ( ). (Photos). (Photos).. (Photos).
12 Chapter 13 (Photos). SDK (Photos) UI UIImagePickerController.. 1. Xcode View based Application (iphone) PhotoLibrary. 2. PhotoLibraryViewController.xib. 3. ( 13 9 ). Round Rect Button ImageView 4. ImageView Attributes Inspector Mode Aspect Fit ( ). 5. PhotoLibraryViewController.h. #import PhotoLibraryViewController : UIViewController <UINavigationControllerDelegate, UIImagePickerControllerDelegate> { IBOutlet UIImageView *imageview; UIImagePickerController *imagepicker;
13 (nonatomic, retain) UIImageView *imageview; -(IBAction) btnclicked: (id) 6., File s Owner Control imageview ImageView. 7. Control File s Owner btnclicked:. 8. PhotoLibraryViewController.m. #import imageview;
14 Chapter 13 - (void)viewdidload { imagepicker = [[UIImagePickerController alloc] init]; [super viewdidload]; - (IBAction) btnclicked: (id) sender { imagepicker.delegate = self; imagepicker.sourcetype = UIImagePickerControllerSourceTypePhotoLibrary; // [self presentmodalviewcontroller:imagepicker animated:yes]; - (void)imagepickercontroller:(uiimagepickercontroller *)picker didfinishpickingmediawithinfo:(nsdictionary *)info { UIImage *image; NSURL *mediaurl; mediaurl = (NSURL *)[info valueforkey: UIImagePickerControllerMediaURL]; if (mediaurl == nil) { image = (UIImage *) [info valueforkey:uiimagepickercontrollereditedimage]; if (image == nil) { // image = (UIImage *) [info valueforkey:uiimagepickercontrolleroriginalimage]; // imageview.image = image; else { // //--- (crop) --- CGRect rect = [[info valueforkey:uiimagepickercontrollercroprect] CGRectValue]; // imageview.image = image; else { // //
15 385 // [picker dismissmodalviewcontrolleranimated:yes]; - (void)imagepickercontrollerdidcancel:(uiimagepickercontroller *)picker { //---, --- [picker dismissmodalviewcontrolleranimated:yes]; - (void)dealloc { [imageview release]; [imagepicker release]; [super dealloc]; 9. Command R. 10. Load Photo Library. Photo Albums. ( ),. ImageView ( ).
16 Chapter 13 UI (Photo Library) UIImagePickerController. UIImagePickerControllerDelegate. UINavigationControllerDelegate. UIImagePickerController. PhotoLibraryViewController : UIViewController <UINavigationControllerDelegate, UIImagePickerControllerDelegate> {... Load Photo Library UIImagePickerController,. - (IBAction) btnclicked: (id) sender { imagepicker.delegate = self; imagepicker.sourcetype = UIImagePickerControllerSourceTypePhotoLibrary; // [self presentmodalviewcontroller:imagepicker animated:yes];,. imagepicker.allowsediting = YES;, UIImagePickerControllerSourceTypePhotoLibrary,. UIImagePickerControllerSourceTypeCamera. UIImagePickerControllerSourceTypeSavedPhotosAlbum Photo Albums.
17 387 /, imagepickercontroller:didfinishpickingmediawithinfo:. - (void)imagepickercontroller:(uiimagepickercontroller *)picker didfinishpickingmediawithinfo:(nsdictionary *)info { UIImage *image; NSURL *mediaurl; mediaurl = (NSURL *)[info valueforkey:uiimagepickercontrollermediaurl]; if (mediaurl == nil) { image = (UIImage *) [info valueforkey:uiimagepickercontrollereditedimage]; if (image == nil) { // image = (UIImage *) [info valueforkey:uiimagepickercontrolleroriginalimage]; // imageview.image = image; else { // //--- (crop) --- CGRect rect = [[info valueforkey:uiimagepickercontrollercroprect] CGRectValue]; // imageview.image = image; else { // // // [picker dismissmodalviewcontrolleranimated:yes]; info:. valueforkey:,. mediaurl = (NSURL *)[info valueforkey:uiimagepickercontrollermediaurl];
18 Chapter 13 imagepickercontrollerdidcancel:.. - (void)imagepickercontrollerdidcancel:(uiimagepickercontroller *)picker { // [picker dismissmodalviewcontrolleranimated:yes]; (Photo Library).,. 1.. Xcode Frameworks MediaPlayer. framework MobileCoreServices.framework ( ).
19 PhotoLibraryViewController.h. #import <UIKit/UIKit.h> #import <MediaPlayer/MediaPlayer.h> #import PhotoLibraryViewController : UIViewController <UINavigationControllerDelegate, UIImagePickerControllerDelegate> { IBOutlet UIImageView *imageview; UIImagePickerController (nonatomic, retain) UIImageView *imageview; -(IBAction) btnclicked: (id) 3. PhotoLibraryViewController.m. - (IBAction) btnclicked: (id) sender { imagepicker.delegate = self; imagepicker.sourcetype = UIImagePickerControllerSourceTypePhotoLibrary; NSArray *mediatypes = [NSArray arraywithobjects:kuttypeimage, kuttypemovie, nil]; imagepicker.mediatypes = mediatypes; // [self presentmodalviewcontroller:imagepicker animated:yes]; - (void)imagepickercontroller:(uiimagepickercontroller *)picker didfinishpickingmediawithinfo:(nsdictionary *)info { UIImage *image; NSURL *mediaurl; mediaurl = (NSURL *)[info valueforkey:uiimagepickercontrollermediaurl]; if (mediaurl == nil) { image = (UIImage *) [info valueforkey:uiimagepickercontrollereditedimage]; if (image == nil) { // image = (UIImage *)
20 Chapter 13 [info valueforkey:uiimagepickercontrolleroriginalimage]; // imageview.image = image; else { // //--- (crop) --- CGRect rect = [[info valueforkey:uiimagepickercontrollercroprect] CGRectValue]; // imageview.image = image; else { // MPMoviePlayerController *player = [[MPMoviePlayerController alloc] initwithcontenturl:mediaurl]; [[NSNotificationCenter defaultcenter] addobserver:self selector:@selector(moviefinishedcallback:) name:mpmovieplayerplaybackdidfinishnotification object:player]; // player.view.frame = CGRectMake(0, 0, 320, 460); [self.view addsubview:player.view]; [player play]; // [picker dismissmodalviewcontrolleranimated:yes]; - (void) moviefinishedcallback:(nsnotification*) anotification { MPMoviePlayerController *player = [anotification object]; [[NSNotificationCenter defaultcenter] removeobserver:self name:mpmovieplayerplaybackdidfinishnotification object:player]; [player.view removefromsuperview];
21 391 [player autorelease]; 4. Command R. Choose ( ).. UIImagePickerController. UIImagePickerController mediatypes. NSArray. kuttypeimage kuttypemovie. imagepicker.sourcetype = UIImagePickerControllerSourceTypePhotoLibrary; NSArray *mediatypes = [NSArray arraywithobjects:kuttypeimage, kuttypemovie, nil]; imagepicker.mediatypes = mediatypes; // [self presentmodalviewcontroller:imagepicker animated:yes];
22 Chapter 13 MPMoviePlayerController. if (mediaurl == nil) { //... //... else { // MPMoviePlayerController *player = [[MPMoviePlayerController alloc] initwithcontenturl:mediaurl]; [[NSNotificationCenter defaultcenter] addobserver:self selector:@selector(moviefinishedcallback:) name:mpmovieplayerplaybackdidfinishnotification object:player]; // player.view.frame = CGRectMake(0, 0, 320, 460); [self.view addsubview:player.view]; [player play]; // [picker dismissmodalviewcontrolleranimated:yes];. - (void) moviefinishedcallback:(nsnotification*) anotification { MPMoviePlayerController *player = [anotification object]; [[NSNotificationCenter defaultcenter] removeobserver:self name:mpmovieplayerplaybackdidfinishnotification object:player]; [player.view removefromsuperview]; [player autorelease];
23 393 (Photo Library),., UIImagePickerController PhotoLibraryViewController.m ( ). - (IBAction) btnclicked: (id) sender { imagepicker.delegate = self; // /* imagepicker.sourcetype = UIImagePickerControllerSourceTypePhotoLibrary; NSArray *mediatypes = [NSArray arraywithobjects:kuttypeimage, kuttypemovie, nil]; imagepicker.mediatypes = mediatypes; */ // imagepicker.sourcetype = UIImagePickerControllerSourceTypeCamera; NSArray *mediatypes = [NSArray arraywithobjects:kuttypeimage, kuttypemovie, nil]; imagepicker.mediatypes = mediatypes; imagepicker.cameracapturemode = UIImagePickerControllerCameraCaptureModeVideo; imagepicker.allowsediting = YES; // [self presentmodalviewcontroller:imagepicker animated:yes]; 2. PhotoLibraryViewController.m.
24 Chapter 13 - (NSString *) filepath: (NSString *) filename { NSArray *paths = NSSearchPathForDirectoriesInDomains( NSDocumentDirectory, NSUserDomainMask, YES); NSString *documentsdir = [paths objectatindex:0]; return [documentsdir stringbyappendingpathcomponent:filename]; - (void) saveimage{ // NSData *imagedata = [NSData datawithdata:uiimagepngrepresentation(imageview.image)]; // [imagedata writetofile:[self filepath:@"mypicture.png"] atomically:yes]; (void)imagepickercontroller:(uiimagepickercontroller *)picker didfinishpickingmediawithinfo:(nsdictionary *)info { UIImage *image; NSURL *mediaurl; mediaurl = (NSURL *)[info valueforkey:uiimagepickercontrollermediaurl]; if (mediaurl == nil) { image = (UIImage *) [info valueforkey:uiimagepickercontrollereditedimage]; if (image == nil) { // image = (UIImage *) [info valueforkey:uiimagepickercontrolleroriginalimage]; // imageview.image = image; // [self saveimage]; else { // //--- (crop) --- CGRect rect = [[info valueforkey:uiimagepickercontrollercroprect]
25 395 CGRectValue]; // imageview.image = image; // [self saveimage]; else { // MPMoviePlayerController *player = [[MPMoviePlayerController alloc] initwithcontenturl:mediaurl]; [[NSNotificationCenter defaultcenter] addobserver:self selector:@selector(moviefinishedcallback:) name:mpmovieplayerplaybackdidfinishnotification object:player]; // player.view.frame = CGRectMake(0, 0, 320, 460); [self.view addsubview:player.view]; [player play]; // [picker dismissmodalviewcontrolleranimated:yes]; 4. Command R. 5. Load Photo Library. ( ) Documents. ( ).
26 Chapter 13. imagepicker.sourcetype = UIImagePickerControllerSourceTypeCamera; imagepickercontroller:didfinishpicking MediaWithInfo:,.
27 397. filepath: Documents. - (NSString *) filepath: (NSString *) filename { NSArray *paths = NSSearchPathForDirectoriesInDomains( NSDocumentDirectory, NSUserDomainMask, YES); NSString *documentsdir = [paths objectatindex:0]; return [documentsdir stringbyappendingpathcomponent:filename]; saveimage:, MyPicture.png filepath:. - (void) saveimage{ // NSData *imagedata = [NSData datawithdata:uiimagepngrepresentation(imageview.image)]; // [imagedata writetofile:[self filepath:@"mypicture.png"] atomically:yes]; URL, MediaPlayer MPMoviePlayerController. NOTE UIImagePickerController UIImagePickerController cameradevice UIImagePickerControllerCameraDeviceRear UIImagePickerControllerCameraDeviceFront NOTE
28 Chapter 13. URL SMS (Mail), (Safari), (Phone). SMS, SDK (Photo Library). 1. SMS (Mail), (Safari), (Phone) URL 2. Image Picker UI 3. Mail Composer UI 4. Message Composer UI E.
29 399 NSString * string [[UIApplication sharedapplication] openurl:[nsurl URLWithString: String]]; [[UIApplication sharedapplication] openurl:[nsurl [[UIApplication sharedapplication] openurl:[nsurl [[UIApplication sharedapplication] openurl:[nsurl UIImagePickerController UINavigation ControllerDelegate MFMailComposeViewController MFMessageComposeViewController
2ndWeek_Introduction to iPhone OS.key
Introduction to iphone OS _2 Dept. of Multimedia Science, Sookmyung Women s University. Prof. JongWoo Lee Index iphone SDK - - - Xcode Interface Builder Objective-C Dept. of Multimedia Science, Sookmyung
More information05-06( )_¾ÆÀÌÆù_ÃÖÁ¾
6 T o u c h i n g t h e i P h o n e S D K 3. 0 6.1 01: -(void) touchesbegan:(nsset * ) touches withevent:(uievent * )event { 02: NSSet * alltouches = [event alltouches]; 03: if ([alltouches count]>1)
More informationMicrosoft PowerPoint - 4-UI 애플리케이션
UIApplication 클래스 UIApplicationDelegate 프로토콜 순천향대학교 컴퓨터공학과 이 상 정 1 UIApplication 클래스 순천향대학교 컴퓨터공학과 이 상 정 2 UIApplication 클래스 개요 이 장에서는 UIApplication 클래스를 기본으로 하여 아이폰 프 로그램 동작 과정을 이해 인터페이스 빌더를 사용하지 않는 아이폰
More informationiphone AppStore 2008.11 ( ) ( ) : / : / : / iphone Application Android Platform Open Solutions based on Linux iphone Application Application Process iphone Jailbreak iphone Version NemusSync, SDK Limitation
More information캐빈의iOS프로그램팁01
캐빈의 ios 프로그램팁 글쓴이 : 안경훈 (kevin, linuxgood@gmail.com) ios 로프로그램을만들때사용할수있는여러가지팁들을모아보았다. 이글을읽는독자는처음으로 Objective-C 를접하며, 간단한문법정도만을알고있다고생각하여되도록그림과함께설명을하였다. 또한, 복잡한구현방법보다는매우간단하지만, 유용한프로그램팁들을모아보았다. 굳이말하자면 ios
More informationIAP-Guide
M2US52D6AA.com.yourcompany.yourapp M2US52D6AA.com.yourcompany.* M2US52D6AA.com.yourcompany.yourapp com.yourcompany.yourapp InAppPurchaseManager.h #import #define kinapppurchasemanagerproductsfetchednotification
More informationAnalytics > Log & Crash Search > Unity ios SDK [Deprecated] Log & Crash Unity ios SDK. TOAST SDK. Log & Crash Unity SDK Log & Crash Search. Log & Cras
Analytics > Log & Crash Search > Unity ios SDK [Deprecated] Log & Crash Unity ios SDK. TOAST SDK. Log & Crash Unity SDK Log & Crash Search. Log & Crash Unity SDK... Log & Crash Search. - Unity3D v4.0 ios
More information매력적인 맥/iOS 개발 환경 그림 A-1 변경 사항 확인창 Validate Setting... 항목을 고르면 된다. 프로젝트 편집기를 선택했을 때 화면 아 래쪽에 있는 동일한 Validate Settings... 버튼을 클릭해도 된다. 이슈 내비게이터 목록에서 변경할
Xcode4 부록 A Xcode 4.1에서 바뀐 내용 이번 장에서는 맥 OSX 10.7 라이언과 함께 발표된 Xcode 4.1에서 새롭게 추가된 기 능과 변경된 기능을 정리하려고 한다. 우선 가장 먼저 알아둬야 할 사항은 ios 개발을 위한 기본 컴파일러가 LLVM- GCC 4.2로 바뀌었다는 점이다. LLVM-GCC 4.2 컴파일러는 Xcode 4.0의 기본
More informationiphone 개발자의 SQLite 다루기 개발 Xcode Version : 4.5 작성 서경덕 환경 시뮬레이터 : iphone Simulator 6.0 일시 2013 년 1 월 3 일 시나리오 1. FireFox의플러그인을통해 SQLite파일을맊든다. 2. 어플에서이
iphone 개발자의 SQLite 다루기 개발 Xcode Version : 4.5 작성 서경덕 환경 시뮬레이터 : iphone Simulator 6.0 일시 2013 년 1 월 3 일 시나리오 1. FireFox의플러그인을통해 SQLite파일을맊든다. 2. 어플에서이 SQLite( 외부 ) 파일을읽어서출력한다. (viewdidload) 3. 버튼을누를때마다
More information(Xcode4.2 의 Choose a template for your new project 화면 ) 2) 라이브러리패널이조금바뀌었습니다. Stepper, Gesture Recognizer 가추가되었습니다. 외형이조금바뀌었지만, 책의내용은그대로사용할수있으므로문제없습니다.
Xcode4 로시작하는아이폰프로그래밍 ( 로드북, 2012) _Xcode4.2 에대한추가정보 (2012/1/23) 이책은 Xcode4.0 과 Snow Leopard 를기반으로설명하고있습니다만. 최신버전인 Xcode4.2 에서도 거의그대로사용할수있습니다. 하지만약간의차이가있으므로이차이점에대해다음과같이 3 가지항목으로나누어설명한문서를배포하오니참고바랍니다. A)
More information슬라이드 1
세모그래픽스 III. 게임프로그래밍에필요한 OpenGL Page 1 목차 1. 간단한 OBJ-C 2. IOS의 OGL VS Win32의 OGL 3. IOS개발환경설정 4. 뷰포트, 프로젝션, 모델뷰 ( 회전이먼저냐이동이먼저냐?) Page 2 세모그래픽스 간단한 OBJ-C 2011.07.16 김형석 Page 3 1. Obj-C (test2_cpp) #import
More informationiOS의 MKMapView 정리하기
http://lomohome.com/321 by Geunwon,Mo (mokorean@gmail.com) Android 의 MapView (Google API) 정리하기에이은 ios (iphone,ipod touch) 의 MKMapView 정리하기. 저번엔안드로이드용위치기반지점찾기 (LBS) 를구현하였고, 이번에아이폰용뱅킹어플을만들면서아이폰용도지점찾기를어플로구현할필요가생겼다.
More information- 목차 - - ios 개발환경및유의사항. - 플랫폼 ios Project. - Native Controller와플랫폼화면연동. - 플랫폼 Web(js)-Native 간데이터공유. - 플랫폼확장 WN Interface 함수개발. - Network Manager clas
플랫폼사용을위한 ios Native Guide - 목차 - - ios 개발환경및유의사항. - 플랫폼 ios Project. - Native Controller와플랫폼화면연동. - 플랫폼 Web(js)-Native 간데이터공유. - 플랫폼확장 WN Interface 함수개발. - Network Manager class 개발. - Native Controller에서
More informationMicrosoft PowerPoint - 2-Objective-C 기초
클래스와오브젝트 메모리관리 순천향대학교컴퓨터공학과이상정 1 Objective-C 소개 C 언어에 Smalltalk 스타일의메시지전달을결합한객체지향프로그래밍언어 Objective-C 와코코아는 Mac OS X 운영체제의핵심 개발역사 1980 년대초에 Stepstone 사의 Brad Cox 와 Tom Love 가개발 1985년에 Steve Jobs가저렴한워크스테이션개발을위해
More informationSocial Network
Social Network Service, Social Network Service Social Network Social Network Service from Digital Marketing Internet Media : SNS Market report A social network service is a social software specially focused
More informationTad_가이드라인
SK T ad ios SDK Document Version 3.5 SDK Version 3.1.0.6 2013 8 28 SK T ad 2013/02/15 2013/08/28 3.1.0.6! 3 Build environment! 5 Header import! 11 Method! 14 Delegate! 15 Coding Guide! 17 Test Client ID!
More information( )부록
A ppendix 1 2010 5 21 SDK 2.2. 2.1 SDK. DevGuide SDK. 2.2 Frozen Yoghurt Froyo. Donut, Cupcake, Eclair 1. Froyo (Ginger Bread) 2010. Froyo Eclair 0.1.. 2.2. UI,... 2.2. PC 850 CPU Froyo......... 2. 2.1.
More information¾Ë·¹¸£±âÁöħ¼�1-ÃÖÁ¾
Chapter 1 Chapter 1 Chapter 1 Chapter 2 Chapter 2 Chapter 2 Chapter 2 Chapter 2 Chapter 3 Chapter 3 Chapter 3 Chapter 3 Chapter 3 Chapter 3 Chapter 3 Chapter 3 Chapter 4 Chapter 4
More information01....b74........62
4 5 CHAPTER 1 CHAPTER 2 CHAPTER 3 6 CHAPTER 4 CHAPTER 5 CHAPTER 6 7 1 CHAPTER 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
More information(291)본문7
2 Chapter 46 47 Chapter 2. 48 49 Chapter 2. 50 51 Chapter 2. 52 53 54 55 Chapter 2. 56 57 Chapter 2. 58 59 Chapter 2. 60 61 62 63 Chapter 2. 64 65 Chapter 2. 66 67 Chapter 2. 68 69 Chapter 2. 70 71 Chapter
More informationBH의 아이폰 추천 어플
BH의 아이폰 추천 어플 정병훈 소개글 목차 1 [BH의 아이폰 필수 앱] Pulse - 뉴스/웹사이트/RSS 모아주는 앱 4 2 [BH의 아이폰 필수 앱] Dropbox - n스크린 파일 공유 앱 (문서, 사진, 동영상 등) 12 3 [BH의 아이폰 필수 앱] 파노라마 사진찍기 Photosynth 17 4 [BH의 아이폰 필수 앱] 연락처 동기화 네이버 주소록
More informationSGIS 오픈플랫폼 지도제공 API 정의 ios Version 1.0 1
SGIS 오픈플랫폼 지도제공 API 정의 ios Version 1.0 1 목 차 1. 개요... 3 1.1. 목적... 3 1.2. 고려사항... 3 1.3. 서비스개요... 3 1.3.1. 서비스요약... 3 2. API... 4 2.1. API 목록... 4 2.2. API 정의... 6 2.2.1. 지도생성... 6 2.2.1.1. MapView...
More informationAnalyst Briefing
. Improve your Outlook on Email and File Management iseminar.. 1544(or 6677)-3355 800x600. iseminar Chat... Improve your Outlook on Email and File Management :, 2003 1 29.. Collaboration Suite - Key Messages
More informationDocsPin_Korean.pages
Unity Localize Script Service, Page 1 Unity Localize Script Service Introduction Application Game. Unity. Google Drive Unity.. Application Game. -? ( ) -? -?.. 준비사항 Google Drive. Google Drive.,.. - Google
More informationiphone ios 6 DEVELOPMENT ESSENTIALS Copyright c 2012 Neil Smyth. All rights reserved. Korean Translation Copyright c 2013 by J-Pub. co. The Korean edi
iphone ios 6 DEVELOPMENT ESSENTIALS Copyright c 2012 Neil Smyth. All rights reserved. Korean Translation Copyright c 2013 by J-Pub. co. The Korean edition is published by arrangement with Neil Smyth through
More informationiOS의 GameCenter를 내어플에 붙여보자
http://lomohome.com/357 mokorean@gmail.com 어플에 GameCenter 를붙이자! (+ 겜센터스타일의알림창 Notification 도붙이자!) - 개인적인용도로요약한글이라글에서는경어체를사용하지않습니다. 양해부탁드립니다. - 회사에서진행하고있는프로젝트와관련이있어과도한모자이크가있습니다. 양해부탁드립니다. ios 4.1 부터지원하기시작한
More information자바 웹 프로그래밍
Chapter 00. 강의소개 Chapter 01. Mobile Application Chapter 02. 기본프로그래밍 강의내용최근큰인기를끌고있는 Mobile Application 에관한소개및실제이를위한개발방법을소개하며, Application 개발에관한프로그래밍을간략히진행 강의목표 - 프로그래밍의기본흐름이해 - 창의 SW 설계에서프로그래밍을이용한프로젝트진행에도움을주기위함
More information<4D F736F F D20284B B8F0B9D9C0CF20BED6C7C3B8AEC4C9C0CCBCC720C4DCC5D9C3F720C1A2B1D9BCBA2020C1F6C4A720322E302E646F6378>
KSKSKSKS KSKSKSK KSKSKS KSKSK KSKS KSK KS X 3253 KS 2.0 KS X 3253 2016 2016 10 20 3 ... ii... iii 1... 1 2... 1 3... 1 3.1... 1 3.2... 3 4... 3 5... 4 6... 5 7... 7 8... 7 9... 8 A ( )... 9 A.1... 9 A.2...
More information03장
CHAPTER3 ( ) Gallery 67 68 CHAPTER 3 Intent ACTION_PICK URI android provier MediaStore Images Media EXTERNAL_CONTENT_URI URI SD MediaStore Intent choosepictureintent = new Intent(Intent.ACTION_PICK, ë
More information자바 웹 프로그래밍
Chapter 03. Mobile APIs Android Java 언어, Windows & Mac 에서개발 Eclipse, JDK, Android SDK Android Studio 2 - jdk-8u101-windows-x64.exe - android-studio-bundle-145.3276617-windows.exe ios Objective C & Swift
More informationMobile Service > IAP > Android SDK [ ] IAP SDK TOAST SDK. IAP SDK. Android Studio IDE Android SDK Version (API Level 10). Name Reference V
Mobile Service > IAP > Android SDK IAP SDK TOAST SDK. IAP SDK. Android Studio IDE 2.3.3 Android SDK Version 2.3.3 (API Level 10). Name Reference Version License okhttp http://square.github.io/okhttp/ 1.5.4
More informationPART 1 CHAPTER 1 Chapter 1 Note 4 Part 1 5 Chapter 1 AcctNum = Table ("Customer").Cells("AccountNumber") AcctNum = Customer.AccountNumber Note 6 RecordSet RecordSet Part 1 Note 7 Chapter 1 01:
More information슬라이드 1
LG U + 고객안내用 신한카드모바일 App. 결제서비스출시와관련한고객사안내 2012. 11. LG U + 전자결제서비스 1. 기본개요 최근적용된 [ 신한카드모바일 App. 결제서비스 ] 와관련하여 1 서비스개요및 2 고객사변경필요사항을정리하여안내드립니다. 서비스개요 : 신한카드가제공하는결제 App. 을사용해사전등록한신한카드정보를선택한후결제비밀번호를입력하여결제하는서비스
More informationchapter4
Basic Netw rk 1. ก ก ก 2. 3. ก ก 4. ก 2 1. 2. 3. 4. ก 5. ก 6. ก ก 7. ก 3 ก ก ก ก (Mainframe) ก ก ก ก (Terminal) ก ก ก ก ก ก ก ก 4 ก (Dumb Terminal) ก ก ก ก Mainframe ก CPU ก ก ก ก 5 ก ก ก ก ก ก ก ก ก ก
More information3주차_Core Audio_ key
iphone OS Sound Programming 5 Core Audio For iphone OS 2010-2 Dept. of Multimedia Science, Sookmyung Women's University JongWoo Lee 1 Index 1. Introduction 2. What is Core Audio? 3. Core Audio Essentials
More informationWeek13
Week 13 Social Data Mining 02 Joonhwan Lee human-computer interaction + design lab. Crawling Twitter Data OAuth Crawling Data using OpenAPI Advanced Web Crawling 1. Crawling Twitter Data Twitter API API
More informationDialog Box 실행파일을 Web에 포함시키는 방법
DialogBox Web 1 Dialog Box Web 1 MFC ActiveX ControlWizard workspace 2 insert, ID 3 class 4 CDialogCtrl Class 5 classwizard OnCreate Create 6 ActiveX OCX 7 html 1 MFC ActiveX ControlWizard workspace New
More informationI T C o t e n s P r o v i d e r h t t p : / / w w w. h a n b i t b o o k. c o. k r
I T C o t e n s P r o v i d e r h t t p : / / w w w. h a n b i t b o o k. c o. k r I T C o t e n s P r o v i d e r h t t p : / / w w w. h a n b i t b o o k. c o. k r Jakarta is a Project of the Apache
More informationChap12
12 12Java RMI 121 RMI 2 121 RMI 3 - RMI, CORBA 121 RMI RMI RMI (remote object) 4 - ( ) UnicastRemoteObject, 121 RMI 5 class A - class B - ( ) class A a() class Bb() 121 RMI 6 RMI / 121 RMI RMI 1 2 ( 7)
More informationSmart Power Scope Release Informations.pages
v2.3.7 (2017.09.07) 1. Galaxy S8 2. SS100, SS200 v2.7.6 (2017.09.07) 1. SS100, SS200 v1.0.7 (2017.09.07) [SHM-SS200 Firmware] 1. UART Command v1.3.9 (2017.09.07) [SHM-SS100 Firmware] 1. UART Command SH모바일
More informationPCServerMgmt7
Web Windows NT/2000 Server DP&NM Lab 1 Contents 2 Windows NT Service Provider Management Application Web UI 3 . PC,, Client/Server Network 4 (1),,, PC Mainframe PC Backbone Server TCP/IP DCS PLC Network
More information찾아보기 Index 기호및숫자!( 논리부정 ) 연산자 31!=( 같지않음 ) 연산자 30 #define #define과전역변수 #import #include %( 나머지연산자 ) 63 ( 토큰참고 ) 159
찾아보기 Index 기호및숫자!( 논리부정 ) 연산자 31!=( 같지않음 ) 연산자 30 #define 193-197 #define과전역변수 200-201 #import 194-195 #include 194-195 %( 나머지연산자 ) 63 ( 토큰참고 ) %@ 159 %= 연산자 65 %d 58 %e 66 %f 66 %p 80 %s 58 %u 62 %zu
More informationJavaGeneralProgramming.PDF
, Java General Programming from Yongwoo s Park 1 , Java General Programming from Yongwoo s Park 2 , Java General Programming from Yongwoo s Park 3 < 1> (Java) ( 95/98/NT,, ) API , Java General Programming
More informationHTML5* Web Development to the next level HTML5 ~= HTML + CSS + JS API
WAC 2.0 & Hybrid Web App 권정혁 ( @xguru ) 1 HTML5* Web Development to the next level HTML5 ~= HTML + CSS + JS API Mobile Web App needs Device APIs Camera Filesystem Acclerometer Web Browser Contacts Messaging
More informationCONTENTS 01 Adobe Photoshop Lightroom을 소개합니다 촬영부터 출력까지 간편한 사진 작업 (Simplify photography from shoot to finish) Adobe Photoshop Lightroom 작업공간(Workspace)
ADOBE PHOTOSHOP LIGHTROOM 글 신동향 사진 신동향, 정한진, 김석준 CONTENTS 01 Adobe Photoshop Lightroom을 소개합니다 촬영부터 출력까지 간편한 사진 작업 (Simplify photography from shoot to finish) Adobe Photoshop Lightroom 작업공간(Workspace) 02
More informationRemote UI Guide
Remote UI KOR Remote UI Remote UI PDF Adobe Reader/Adobe Acrobat Reader. Adobe Reader/Adobe Acrobat Reader Adobe Systems Incorporated.. Canon. Remote UI GIF Adobe Systems Incorporated Photoshop. ..........................................................
More informationAPI STORE 키발급및 API 사용가이드 Document Information 문서명 : API STORE 언어별 Client 사용가이드작성자 : 작성일 : 업무영역 : 버전 : 1 st Draft. 서브시스템 : 문서번호 : 단계 : Docum
API STORE 키발급및 API 사용가이드 Document Information 문서명 : API STORE 언어별 Client 사용가이드작성자 : 작성일 : 2012.11.23 업무영역 : 버전 : 1 st Draft. 서브시스템 : 문서번호 : 단계 : Document Distribution Copy Number Name(Role, Title) Date
More informationMicrosoft PowerPoint - CoolMessenger_제안서_라이트_200508
2005 Aug 0 Table of Contents 1. 제안 개요 P.2 2. 쿨메신저 소개 P.7 3. VoIP 인터넷전화 서비스 P.23 4. 쿨메신저 레퍼런스 사이트 P.32 5. 지란지교소프트 소개 P.37 1 芝 蘭 之 交 2 1. 제안 개요 1) Summery 3 1. 제안 개요 2) 일반 메신저 vs 쿨메신저 보안 문제 기업 정보 & 기밀 유출로
More informationEclipse 와 Firefox 를이용한 Javascript 개발 발표자 : 문경대 11 년 10 월 26 일수요일
Eclipse 와 Firefox 를이용한 Javascript 개발 발표자 : 문경대 Introduce Me!!! Job Jeju National University Student Ubuntu Korean Jeju Community Owner E-Mail: ned3y2k@hanmail.net Blog: http://ned3y2k.wo.tc Facebook: http://www.facebook.com/gyeongdae
More informationSK IoT IoT SK IoT onem2m OIC IoT onem2m LG IoT SK IoT KAIST NCSoft Yo Studio tidev kr 5 SK IoT DMB SK IoT A M LG SDS 6 OS API 7 ios API API BaaS Backend as a Service IoT IoT ThingPlug SK IoT SK M2M M2M
More informationEMBARCADERO TECHNOLOGIES (Humphery Kim) RAD Studio : h=p://tech.devgear.co.kr/ : h=p://blog.hjf.pe.kr/ Facebook : h=p://d.com/hjfactory :
#3 (RAD STUDIO) In www.devgear.co.kr 2016.05.23 EMBARCADERO TECHNOLOGIES (Humphery Kim) RAD Studio : h=p://tech.devgear.co.kr/ : h=p://blog.hjf.pe.kr/ Facebook : h=p://d.com/hjfactory : hskim@embarcadero.kr
More informationiOS ÇÁ·Î±×·¡¹Ö 1205.PDF
iphone ios 5 DEVELOPMENT ESSENTIALS Copyright 2011 Korean Translation Copyright 2011 by J-Pub. co. The Korean edition is published by arrangement with Neil Smyth through Agency-One, Seoul. i iphone ios
More information01-OOPConcepts(2).PDF
Object-Oriented Programming Concepts Tel: 02-824-5768 E-mail: hhcho@selabsoongsilackr? OOP (Object) (Encapsulation) (Message) (Class) (Inheritance) (Polymorphism) (Abstract Class) (Interface) 2 1 + = (Dependency)
More information¨ìÃÊÁ¡2
2 Worldwide Converged Mobile Device Shipment Share by Operating System, 2005 and 2010 Paim OS (3.6%) BiackBerry OS (7.5%) 2005 Other (0.3%) Linux (21.8%) Symbian OS (60.7%) Windows Mobile (6.1%) Total=56.52M
More information6강.hwp
----------------6강 정보통신과 인터넷(1)------------- **주요 키워드 ** (1) 인터넷 서비스 (2) 도메인네임, IP 주소 (3) 인터넷 익스플로러 (4) 정보검색 (5) 인터넷 용어 (1) 인터넷 서비스******************************* [08/4][08/2] 1. 다음 중 인터넷 서비스에 대한 설명으로
More informationibmdw_rest_v1.0.ppt
REST in Enterprise 박찬욱 1-1- MISSING PIECE OF ENTERPRISE Table of Contents 1. 2. REST 3. REST 4. REST 5. 2-2 - Wise chanwook.tistory.com / cwpark@itwise.co.kr / chanwook.god@gmail.com ARM WOA S&C AP ENI
More informationBlog
Objective C http://ivis.cwnu.ac.kr/tc/dongupak twitter : @dongupak 2010. 10. 9.. Blog WJApps Blog Introduction ? OS X -. - X Code IB, Performance Tool, Simulator : Objective C API : Cocoa Touch API API.
More informationLCD Display
LCD Display SyncMaster 460DRn, 460DR VCR DVD DTV HDMI DVI to HDMI LAN USB (MDC: Multiple Display Control) PC. PC RS-232C. PC (Serial port) (Serial port) RS-232C.. > > Multiple Display
More informationSupplier_Connect_User_Guide_Korean
Apple Supplier Connect Last Updated Date: June 8, 2018 1 : Apple Supplier Connect Apple Supplier Connect Apple.,. Apple Supplier Connect., Apple. : Safari, Internet Explorer/Edge Chrome.? 1 2 : MyAccess
More informationContents 1장:Symphony Documents 사용자 가이드 8 2장:Symphony Presentations 사용자 가이드 15 3장:Symphony Spreadsheets 사용자 가이드 23 Chapter 1. Symphony Documents 사용자 가이드01 Symphony Documents 사용자 가이드 IBM Lotus Symphony
More informationJMF3_심빈구.PDF
JMF JSTORM http://wwwjstormpekr Issued by: < > Revision: Document Information Document title: Document file name: Revision number: Issued by: JMF3_ doc Issue Date:
More information<303232382032303134B3E220C1F6BFAABBE7C8B820C5EBC7D5B0C7C1F5C1F8BBE7BEF720BEC8B3BB28C3D6C1BEC0CEBCE2292E687770>
Chaper 1부 국 정책 추진 및 현황 Ⅰ. 국 정책 개요 1. 정책의 배경 및 필요성 5 2. 세계 정책 동향 13 3. 우리나라 정책 추진경과 15 4. 2014년도 정책 추진방향 22 Ⅱ. 국 사업 현황 1. 흡자 지원사업 24 (1) 보건소 사업 24 (2) 상담전화 26 (3) 온라인 지원서비스 27 (4) 군인 전의경 클리닉 사업 28 2. 환경
More informationuntitled
1... 2 System... 3... 3.1... 3.2... 3.3... 4... 4.1... 5... 5.1... 5.2... 5.2.1... 5.3... 5.3.1 Modbus-TCP... 5.3.2 Modbus-RTU... 5.3.3 LS485... 5.4... 5.5... 5.5.1... 5.5.2... 5.6... 5.6.1... 5.6.2...
More informationExt JS À¥¾ÖÇø®ÄÉÀ̼ǰ³¹ß-³¹Àå.PDF
CHAPTER 2 (interaction) Ext JS., HTML, onready, MessageBox get.. Ext JS HTML CSS Ext JS.1. Ext JS. Ext.Msg: : Ext Ext.get: DOM 22 CHAPTER 2 (config). Ext JS.... var test = new TestFunction( 'three', 'fixed',
More information유니 앞부속
Published by Ji&Son Inc. Printed in Korea. Unityによる3Dゲ-ム : iphone/android/webで ゲ-ムプログラミング (JAPAN ISBN 978-4873115061) Authorized translation from the Japanese language edition of Unityによる3Dゲ- ム. 2011 the
More informationthesis
CORBA TMN Surveillance System DPNM Lab, GSIT, POSTECH Email: mnd@postech.ac.kr Contents Motivation & Goal Related Work CORBA TMN Surveillance System Implementation Conclusion & Future Work 2 Motivation
More information<C0CCBCBCBFB52DC1A4B4EBBFF82DBCAEBBE7B3EDB9AE2D313939392D382E687770>
i ii iii iv v vi 1 2 3 4 가상대학 시스템의 국내외 현황 조사 가상대학 플랫폼 개발 이상적인 가상대학시스템의 미래상 제안 5 웹-기반 가상대학 시스템 전통적인 교수 방법 시간/공간 제약을 극복한 학습동기 부여 교수의 일방적인 내용전달 교수와 학생간의 상호작용 동료 학생들 간의 상호작용 가상대학 운영 공지사항,강의록 자료실, 메모 질의응답,
More informationETL_project_best_practice1.ppt
ETL ETL Data,., Data Warehouse DataData Warehouse ETL tool/system: ETL, ETL Process Data Warehouse Platform Database, Access Method Data Source Data Operational Data Near Real-Time Data Modeling Refresh/Replication
More information어댑터뷰
04 커스텀어댑터뷰 (Custom Adapter View) 커스텀어댑터뷰 (Custom Adapter View) 커스텀어댑터뷰 (Custom Adatper View) 란? u 어댑터뷰의항목하나는단순한문자열이나이미지뿐만아니라, 임의의뷰가될수 있음 이미지뷰 u 커스텀어댑터뷰설정절차 1 2 항목을위한 XML 레이아웃정의 어댑터정의 3 어댑터를생성하고어댑터뷰객체에연결
More informationMicrosoft PowerPoint - XP Style
Business Strategy for the Internet! David & Danny s Column 유무선 통합 포탈은 없다 David Kim, Danny Park 2002-02-28 It allows users to access personalized contents and customized digital services through different
More information1
1 1....6 1.1...6 2. Java Architecture...7 2.1 2SDK(Software Development Kit)...8 2.2 JRE(Java Runtime Environment)...9 2.3 (Java Virtual Machine, JVM)...10 2.4 JVM...11 2.5 (runtime)jvm...12 2.5.1 2.5.2
More information3ÆÄÆ®-14
chapter 14 HTTP >>> 535 Part 3 _ 1 L i Sting using System; using System.Net; using System.Text; class DownloadDataTest public static void Main (string[] argv) WebClient wc = new WebClient(); byte[] response
More informationC H A P T E R 2
C H A P T E R 2 Foundations of Ajax Chapter 2 1 32 var xmlhttp; function createxmlhttprequest() { if(window.activexobject) { xmlhttp = new ActiveXObject( Micr else if(window.xmlhttprequest) { xmlhttp =
More informationSena Technologies, Inc. HelloDevice Super 1.1.0
HelloDevice Super 110 Copyright 1998-2005, All rights reserved HelloDevice 210 ()137-130 Tel: (02) 573-5422 Fax: (02) 573-7710 E-Mail: support@senacom Website: http://wwwsenacom Revision history Revision
More informationMicrosoft Word - 김완석.doc
포커스 구글의 기술과 시사점 김완석* 성낙선** 정명애*** 구글에는 전설적인 다수의 개발자들이 지금도 현역으로 일하고 있으며, 구글 창업자와 직원들이 직접 대 화하는 금요회의가 지금도 계속되고 있다. 구글은 창업자, 전설적 개발자, 금요회의, 복지 등 여러 면에서 화제와 관심의 대상이다. 이러한 화제의 구글을 기술 측면에서 이해하기 위하여 구글의 주요 기술에
More informationMentor_PCB설계입문
Mentor MCM, PCB 1999, 03, 13 (daedoo@eeinfokaistackr), (kkuumm00@orgionet) KAIST EE Terahertz Media & System Laboratory MCM, PCB (mentor) : da & Summary librarian jakup & package jakup & layout jakup &
More informationUNIST_교원 홈페이지 관리자_Manual_V1.0
Manual created by metapresso V 1.0 3Fl, Dongin Bldg, 246-3 Nonhyun-dong, Kangnam-gu, Seoul, Korea, 135-889 Tel: (02)518-7770 / Fax: (02)547-7739 / Mail: contact@metabrain.com / http://www.metabrain.com
More informationuntitled
A Leader of Enterprise e-business Solution FORCS Co., LTD 1 OZ Application Getting Started (ver 5.1) 2 FORCS Co., LTD A Leader of Enterprise e-business Solution FORCS Co., LTD 3 OZ Application Getting
More informationrmi_박준용_final.PDF
(RMI) - JSTORM http://wwwjstormpekr (RMI)- Document title: Document file name: Revision number: Issued by: Document Information (RMI)- rmi finaldoc Issue Date: Status:
More informationMicrosoft PowerPoint - Smart CRM v4.0_TM 소개_20160320.pptx
(보험TM) 소개서 2015.12 대표전화 : 070 ) 7405 1700 팩스 : 02 ) 6012 1784 홈 페이지 : http://www.itfact.co.kr 목 차 01. Framework 02. Application 03. 회사 소개 01. Framework 1) Architecture Server Framework Client Framework
More informationSpecial Theme _ 모바일웹과 스마트폰 본 고에서는 모바일웹에서의 단말 API인 W3C DAP (Device API and Policy) 의 표준 개발 현황에 대해서 살펴보고 관 련하여 개발 중인 사례를 통하여 이해를 돕고자 한다. 2. 웹 애플리케이션과 네이
모바일웹 플랫폼과 Device API 표준 이강찬 TTA 유비쿼터스 웹 응용 실무반(WG6052)의장, ETRI 선임연구원 1. 머리말 현재 소개되어 이용되는 모바일 플랫폼은 아이폰, 윈 도 모바일, 안드로이드, 심비안, 모조, 리모, 팜 WebOS, 바다 등이 있으며, 플랫폼별로 버전을 고려하면 그 수 를 열거하기 힘들 정도로 다양하게 이용되고 있다. 이
More informationOOP 소개
OOP : @madvirus, : madvirus@madvirus.net : @madvirus : madvirus@madvirus.net ) ) ) 7, 3, JSP 2 ? 3 case R.id.txt_all: switch (menu_type) { case GROUP_ALL: showrecommend("month"); case GROUP_MY: type =
More informationPowerPoint 프레젠테이션
@ Lesson 2... ( ). ( ). @ vs. logic data method variable behavior attribute method field Flow (Type), ( ) member @ () : C program Method A ( ) Method B ( ) Method C () program : Java, C++, C# data @ Program
More informationPowerPoint 프레젠테이션
Reasons for Poor Performance Programs 60% Design 20% System 2.5% Database 17.5% Source: ORACLE Performance Tuning 1 SMS TOOL DBA Monitoring TOOL Administration TOOL Performance Insight Backup SQL TUNING
More informationiphone_최종.indb
Xcode4 로시작하는아이폰프로그래밍 지은이 _ Yoshinao Mori 옮긴이 _ 김태현 1판 1쇄발행일 _ 201 2년 1월 13일펴낸이 _ 장미경펴낸곳 _ 로드북편집 _ 임성춘디자인 _ 이호용 ( 표지 ), 박진희 ( 본문 ) 주소 _ 서울시관악구신림동 1451-15 101호출판등록 _ 제 2011-21호 (2011년 3월 22일 ) 전화 _ 02)874-7883
More informationuntitled
CAN BUS RS232 Line CAN H/W FIFO RS232 FIFO CAN S/W FIFO TERMINAL Emulator COMMAND Interpreter PROTOCOL Converter CAN2RS232 Converter Block Diagram > +- syntax
More informationWindows Live Hotmail Custom Domains Korea
매쉬업코리아2008 컨퍼런스 Microsoft Windows Live Service Open API 한국 마이크로소프트 개발자 플랫폼 사업 본부 / 차세대 웹 팀 김대우 (http://www.uxkorea.net 준서아빠 블로그) Agenda Microsoft의 매쉬업코리아2008 특전 Windows Live Service 소개 Windows Live Service
More informationLU8300_(Rev1.0)_1020.indd
LG-LU8300 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 59 60 62 63 64 65 66
More informationPowerPoint Presentation
Oracle9i Application Server Enterprise Portal Senior Consultant Application Server Technology Enterprise Portal? ERP Mail Communi ty Starting Point CRM EP BSC HR KMS E- Procurem ent ? Page Assembly Portal
More informationuntitled
Step Motor Device Driver Embedded System Lab. II Step Motor Step Motor Step Motor source Embedded System Lab. II 2 open loop, : : Pulse, 1 Pulse,, -, 1 +5%, step Step Motor (2),, Embedded System Lab. II
More informationMicrosoft PowerPoint - 11주차_Android_GoogleMap.ppt [호환 모드]
Google Map View 구현 학습목표 교육목표 Google Map View 구현 Google Map 지원 Emulator 생성 Google Map API Key 위도 / 경도구하기 위도 / 경도에따른 Google Map View 구현 Zoom Controller 구현 Google Map View (1) () Google g Map View 기능 Google
More information<B0B3C0CEC1A4BAB85FBAB8C8A3B9FDB7C95FB9D75FC1F6C4A7B0EDBDC35FC7D8BCB3BCAD2831323233C3D6C1BE292E687770>
개인정보 보호법령 및 지침 고시 해설 2011. 12 행정안전부 본 해설서는 개인정보 보호법, 동법 시행령 시행규칙 및 표준지침 고시의 적용기준을 제시 하기 위한 용도로 제작되었습니다. 법령에 대한 구체적인 유권해석은 행정안전부로 문의하여 주시기 바랍니다. 약어 설명 o 중앙행정기관명 - 방송통신위원회 : 방통위 - 국가보훈처 : 보훈처 - 공정거래위원회
More information휠세미나3 ver0.4
andromeda@sparcs:/$ ls -al dev/sda* brw-rw---- 1 root disk 8, 0 2014-06-09 18:43 dev/sda brw-rw---- 1 root disk 8, 1 2014-06-09 18:43 dev/sda1 brw-rw---- 1 root disk 8, 2 2014-06-09 18:43 dev/sda2 andromeda@sparcs:/$
More informationESET NOD32 Antivirus
ESET NOD32 ANTIVIRUS 6 사용자 설명서 (제품 버전 6.0 이상) Microsoft Windows 8 / 7 / Vista / XP / Home Server 이 문서의 최신 버전을 다운로드하려면 여기를 클릭 ESET NOD32 ANTIVIRUS Copy r ight 2013 by ESET, s pol. s r. o. ESET NOD32 Antivirus는
More informationP/N: (Dec. 2003)
P/N: 5615 1451 0014 (Dec. 2003) iii 1... 1...1...1...2...3...4...4...5...6...6...7...8...8...8...9...11...11...11 2... 13...13...14...14...15...16...17...18 ... 19... 20... 20... 22... 22... 24 3 Pocket
More information컴퓨터과학과 교육목표 컴퓨터과학과의 컴퓨터과학 프로그램은 해당분야 에서 학문적 기술을 창의적으로 연구하고 산업적 기술을 주도적으로 개발하는 우수한 인력을 양성 함과 동시에 직업적 도덕적 책임의식을 갖는 IT인 육성을 교육목표로 한다. 1. 전공 기본 지식을 체계적으로
2015년 상명대학교 ICT융합대학 컴퓨터과학과 졸업 프로젝트 전시회 2015 Computer Science Graduate Exhibition 2015 Computer Science Graduate Exhibition 1 컴퓨터과학과 교육목표 컴퓨터과학과의 컴퓨터과학 프로그램은 해당분야 에서 학문적 기술을 창의적으로 연구하고 산업적 기술을 주도적으로 개발하는
More information