본문 바로가기
프로그래밍/iOS

테이블뷰 마지막 셀보이기(카카오톡 처럼)

by 백룡화검 2012. 4. 26.


[table reloadData];


NSIndexPath *indexPath = [NSIndexPath indexPathForRow:[table numberOfRowsInSection:0] - 1 inSection:0];


[table scrollToRowAtIndexPath:indexPath atScrollPosition:UITableViewScrollPositionBottom animated:NO];