Develop
2014.04.08 15:48
[ios] UITableView 특정 Row만 Update
조회 수 5791 댓글 0
여러개의 특정 row만 reload 하는 코드
// tableView에 특정 row만 reload 하겠다고 메세지 전달 [tableView beginUpdates]; // reload 하기 위한 indexPath 배열 생성 NSIndexPath *indexPath1 = [NSIndexPath indexPathForRow:1 inSection:0]; NSIndexPath *indexPath2 = [NSIndexPath indexPathForRow:3 inSection:0]; NSArray *array = [NSArray arrayWithObjects:indexPath1, indexPath2, nil]; // 특정 row를 reload [tableView reloadRowsAtIndexPaths:array withRowAnimation:UITableViewRowAnimationFade]; // tableView에 reload 완료 메세지 전달 [tableView endUpdates];
한 개의 특정 row 만을 reload 하는 심플한 코드
[_tableView beginUpdates]; [_tableView reloadRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationTop]; [_tableView endUpdates];
번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 수 |
---|---|---|---|---|---|
301 | Develop | [unix] 날짜 관련 쉘 명령어 (특정일 또는 +-시간, 날짜 계산된 값) | hooni | 2013.04.23 | 15854 |
300 | System/OS | [linux] 아파치설치/설정 - 사용인증 | hooni | 2003.04.23 | 15886 |
299 | System/OS | [mac] SVN 1.8 업데이트 방법 | hooni | 2013.09.24 | 15888 |
298 | Develop |
[ios] iOS In App Purchase #1 (코드 구현 전 웹 설정 작업)
![]() |
hooni | 2013.11.20 | 15909 |
297 | System/OS | [perl] 펄 환경 설정해야 할거 ㅋㅋ | hooni | 2003.04.23 | 15933 |
296 | Etc |
[htm] DOM에 대해 ㅎㅎ
![]() |
hooni | 2003.04.23 | 15948 |
295 | Develop | [css] z-index에 설정할 수 있는 최대값? | hooni | 2013.12.20 | 15952 |
294 | System/OS | [linux] 이기종간의 파일 공유(Samba) | hooni | 2003.04.23 | 15953 |
293 | System/OS | [linux] 웹로그분석기(webalizer) 설치 & 팁 | hooni | 2003.04.23 | 16010 |
292 | Develop | [web] URL 인코딩 방법.. 테이블.. ㅋㅋ | hooni | 2013.04.23 | 16088 |
291 | System/OS | [linux] 특수문자 환경 설정(stty) | hooni | 2003.04.23 | 16117 |
290 | Develop | [unix] 로그파일 정리 쉘스크립트 | hooni | 2014.02.19 | 16120 |