프로그래밍/iOS
테이블뷰 마지막 셀보이기(카카오톡 처럼)
백룡화검
2012. 4. 26. 03:59
[table reloadData];
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:[table numberOfRowsInSection:0] - 1 inSection:0];
[table scrollToRowAtIndexPath:indexPath atScrollPosition:UITableViewScrollPositionBottom animated:NO];