xcode textfield next 구현

2013. 1. 15. 13:35언어/IPhone

- (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/

여기에 해결법이 나와있음.

UITextField - project setup간단하게 이걸 해주면 되는거였는데.. 몰라서 한참 해맸다..

Stroy Board 를 사용할 경우 File's Owner가 없으므로 해당 Controller를 선택해 주면 된다.

'언어 > IPhone' 카테고리의 다른 글

UITableView 함수 관련 설명  (0) 2013.02.05
Xcode에서 Web Page get 하기  (0) 2013.01.11
iOS5 에서 OpenCV 사용하기  (0) 2012.03.16
iphone에서 opencv를 사용해보자  (0) 2012.03.08
스티븐 잡스 사망..  (0) 2011.10.06