Develop
2014.04.08 15:48

[ios] UITableView 특정 Row만 Update

Views 4776 Votes 0 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];

?

  1. [svn] 콘솔에서 svn 사용시 레티나용 이미지 add 안될 때..

    Date2013.09.25 CategoryEtc Byhooni Views37494
    Read More
  2. [mac] SVN 1.8 업데이트 방법

    Date2013.09.24 CategorySystem/OS Byhooni Views14568
    Read More
  3. [ios] 간단한 방법으로 OS버전 확인하기.

    Date2013.09.24 CategoryDevelop Byhooni Views13311
    Read More
  4. 영어. 외우면 도움되는 필수영어회화 표현

    Date2013.09.09 CategoryEtc Byhooni Views20948
    Read More
  5. [ios] Hybrid 앱 스터디 발표 자료

    Date2013.09.06 CategoryDevelop Byhooni Views13711
    Read More
  6. [python] 애니팡, 캔디팡 매크로

    Date2013.09.06 CategoryDevelop Byhooni Views17322
    Read More
  7. [ios] None IB vs. StoryBoard 샘플 소스

    Date2013.09.06 CategoryDevelop Byhooni Views16932
    Read More
  8. [ios] 앱에서 다른 앱 실행시키기

    Date2013.09.05 CategoryDevelop Byhooni Views18535
    Read More
  9. [link] 유용한 사이트 링크.

    Date2013.08.19 CategoryEtc Byhooni Views71457
    Read More
  10. 베지어 곡선 (Bezier curve)

    Date2013.08.18 CategoryEtc Byhooni Views221238
    Read More
  11. [web] 제로보드 XE 템플릿에서 if문에 대해서 알아봅시다

    Date2013.08.16 CategoryEtc Byhooni Views19812
    Read More
  12. 아이 훌레시 작업중 ㅋㅋ

    Date2013.08.09 CategoryDevelop Byhooni Views0
    Read More
  13. [ios] 최신 UI 모음.. (나중에 정리할 것)

    Date2013.08.09 CategoryDevelop Byhooni Views0
    Read More
  14. [ios] UI컨트롤러 샘플코드

    Date2013.08.08 CategoryDevelop Byhooni Views15424
    Read More
  15. [ios] libxml/tree.h file not found

    Date2013.08.08 CategoryDevelop Byhooni Views18708
    Read More
  16. [ios] 소소한 팁 (Rect,Point,Path,URL 등)

    Date2013.08.08 CategoryDevelop Byhooni Views29456
    Read More
Board Pagination Prev 1 ... 23 24 25 26 27 ... 74 Next
/ 74