일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- 블루베리
- 끄니
- 명랑이
- 끈끈이주걱
- UIAlertView setFrame
- Blueberry
- CountDiv
- objective-c
- 종이모형
- paper craft
- 산책묘
- 식충식물
- 태그를 입력해 주세요.
- UIAlertView addSubView
- ios
- 실생묘
- 반려동물
- 애완동물
- 세팔
- codility
- 아기고양이
- 세팔로투스
- cephalotus
- 고양이
- 스파르탄
- PassingCars
- Wall-E
- paper-replika
- 고양이 산책
- creative park
Archives
- Today
- Total
꼼시월드
ios keyboard delegate editing method 실행 순서 본문
-(BOOL)textFieldShouldBeginEditing:(UITextField *)textField{
//1
return true;
}
-(void)textFieldDidBeginEditing:(UITextField *)textField{
//2
NSLog(@"being editing");
}
-(BOOL)textFieldShouldEndEditing:(UITextField *)textField{
//3
return true;
}
-(void)textFieldDidEndEditing:(UITextField *)textField{
//4
NSLog(@"ending editing");
}
'iOS' 카테고리의 다른 글
url scheme을 이용하여 카톡,라인,마이피플 앱 설치 확인하기 (0) | 2013.11.26 |
---|---|
라인 url scheme (0) | 2013.11.26 |
아코디언 테이블뷰, cell folding sample code (0) | 2013.10.20 |
숫자를 전화번호 형식으로 변경하는 라이브러리 (0) | 2013.10.04 |
iOS 키보드 때문에 텍스트필드가 가려질떄 해결방법 (1) | 2012.12.06 |
Comments