Contents

Develop
2014.04.08 15:48

[ios] UITableView 특정 Row만 Update

Views 4849 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
여러개의 특정 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];


?

List of Articles
No. Category Subject Author Date Views
205 Develop [js] 간단한 게임 프로토타입 (HTML5 와는 무관) hooni 2013.04.23 15191
204 Develop [js] 객체 머지.. hooni 2013.12.17 8997
203 Develop [js] 네이버, 다음의 플레이어 스킨 file hooni 2013.04.23 6975
202 Develop [js] 네이버에서 그림 퍼올 때.. URL Encoding 관련ㅋㅋ hooni 2013.04.23 7253
201 Develop [js] 동적(innerHTML)으로 자바스크립트 실행하기.. 2 file hooni 2013.04.23 18239
200 Develop [js] 모바일 스크롤 방지(해제) hooni 2015.04.14 1702
199 Develop [js] 모바일웹에서 이미지 저장하는거 (context menu) 막기 hooni 2013.04.23 26431
198 Develop [js] 문자열에서 숫자만 걸러내기 (jQuery 안쓰고 정규표현식) hooni 2017.12.14 1360
197 Develop [js] 밀리터리 프로그램(전역일 계산) 7 file hooni 2013.04.23 8935
196 Develop [js] 부모창에서 자식창으로 문자열 전달.. file hooni 2013.04.23 7483
195 Develop [js] 비만 지수 측정(BMI) ㅎㅎ file hooni 2013.04.23 7639
194 Develop [js] 빈도우즈(bindows96) file hooni 2013.04.23 7402
Board Pagination Prev 1 ... 49 50 51 52 53 54 55 56 57 58 ... 71 Next
/ 71