didSelectRowAtIndexPath 와 willSelectRowAtIndexPath
- willSelectRowAtIndexPath
: 테이블 셀의 유효값을 체크한다.
- (NSIndexPath *)tableView:(UITableView *)tableView willSelectRowAtIndexPath:(NSIndexPath *)indexPath {
return indexPath;
//return nil; //으로 하면 값을 호출 받지 못한다.
}
- didSelectRowAtIndexPath
: willSelectRowAtIndexPath로 유효값을 얻은 리턴값을 선택시 반응 -(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
NSLog(@"%d", indexPath.row);
}
'개발도구 > iOS - 아이폰 개발' 카테고리의 다른 글
[ios] 빌드오류 "No such file or directory" (0) | 2012.11.05 |
---|---|
[ios] 하나의 인증서로 여러 맥컴퓨터에서 개발하기 (0) | 2012.11.01 |
[ios] provisioning profile specifies the application identifier which doesn't match (0) | 2012.11.01 |
[ios] 나에겐중요--cocoacontrols.com 아이폰오픈소스 (0) | 2012.10.31 |
[Ios] AddressBook -주소록 테이블뷰 만들기 (0) | 2012.10.31 |