일단 내가 하고 싶던건 로그인 페이지에서 텍스트 필드에 포커스가 가면 키보드가 뜨고
그외에 곳을 터치하면 키보드가 닫기는 그런 구현을 하고 싶었다.
- (void) touchesBegan:(NSSet*)touches withEvent:(UIEvent*)event
{
[_userID resignFirstResponder];
[_userPW resignFirstResponder];
}
이렇게 touchesBegan 델리게이트를 이용해서 View를 터치할경우
resingFirstResponder로 focus를 잃게 했다.
'iPhone App' 카테고리의 다른 글
[iphone] NSUserDefaults 를 이용해서 로그인 정보 저장 (0) | 2011.09.08 |
---|---|
[iphone] 메모리 접근 오류 해결법(EXC_BAD_ACCESS) (0) | 2011.09.07 |
[iphone] 경고창 띄우는 법 (0) | 2011.08.29 |
[iphone] synthesize 에서 "_" 언더바를 쓰는 이유 (0) | 2011.08.29 |
[iphone] TextField Foucs 가게하기 (0) | 2011.08.26 |