언어/IPhone(11)
-
UITableView 함수 관련 설명
출처 : http://codecrue.egloos.com/m/1865094 TableViewController의 초기화시 발생하는 절차 // 클래스 선언부 @interface TableViewController : UITableViewController {NSMutableArray *maFileList;} // 클래스 구현부 // 맨처음 이 함수가 불려진다. - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView { return 1;} // 두번째로 열의 갯수를 알려주도록 이 함수가 불려진다. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)sec..
2013.02.05 -
xcode textfield next 구현
- (BOOL)textFieldShouldReturn:(UITextField *)textField { if (textField == txtUsername) { [txtPassword becomeFirstResponder]; } else if (textField == txtPassword) { [txtEmail becomeFirstResponder]; } [textField resignFirstResponder]; return YES;} 소스는 간단한데 implement delegate를 해줘야 한다고 해서 한참 헤맸다 ... http://mobile.tutsplus.com/tutorials/iphone/ios-sdk-uitextfield-uitextfielddelegate/ 여기에 해결법이 나와있음. 간..
2013.01.15 -
Xcode에서 Web Page get 하기
- (BOOL)requestUrl:(NSString *)url { NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:url]cachePolicy:NSURLRequestUseProtocolCachePolicy timeoutInterval:15.0]; [request setHTTPMethod:@"GET"]; // 포스트 방식일때 사용할 코드 //NSString *bodyString = [NSString stringWithFormat:@"http://www.naver.com/"]; //[request setHTTPMethod:@"POST"]; //[request setHTTPBody:[bodyString..
2013.01.11 -
iOS5 에서 OpenCV 사용하기
전에도 한번 포스팅 한 부분에 추가라고나 할까요.. http://niw.at/articles/2009/03/14/using-opencv-on-iphone/en 홈페이지에 잘 설명되어 있어서 순서대로 따라하면 잘 됩니다. 하지만 저처럼 영어 난독증이 있으신 분들은 에러가 나죠.. ㅎ Apple O- 어찌고 저찌고 하는 링크 에러같은게 납니다. Using OpenCV library in your own project The demo application which you can download from my repository is well configured to use these libraries. If you wanted to use OpenCV libraries on your own project, ..
2012.03.16 -
iphone에서 opencv를 사용해보자
구글링을 해보니 http://niw.at/articles/2009/03/14/using-opencv-on-iphone/en 위와 같은 사용법이 올라와있다.. 기쁜 마음으로 따라하려고 # Using Homebrew 터미널에서 명령어를 입력했더니 MAC 왈... "Fuck you~~" Homebrew가 뭐지...? 다시 구글링... 하다가 영어 안되서 네이년을 족쳤더니 "맥에서 apt-get처럼 패키지 관리를 할 수 있는 도구로 Homebrew가 있다." 설치 방법을 알려달라고... 다시 족치니 아래와 같은 명령어가 나온다.. /usr/bin/ruby -e "$(curl -fsSL https://raw.github.com/gist/323731)" 굿~! 역시 구글과 네이년은 이틀에 한번은 족쳐야해...
2012.03.08 -
스티븐 잡스 사망..
건강상의 이유로 최고경영자 자리를 물러났었던 애플의 스티븐 잡스가 돌아가셨다고 합니다. 고인의 명복을 빕니다..
2011.10.06