728x90
//3초후에 스크롤을 이동시키는 메소드 호출,
[self performSelector:@selector(ScrollToItem:) withObject:[NSNumber numberWithInt:mCurrentDataCount] afterDelay:3.0f];
//테이블을 새로 로드된 첫번째 아이템의 위치로 스크롤 시키는 메서드
-(void)ScrollToItem:(NSNumber*)newIndex
{
if(self.mActivities.HasNext){
[self.table_view scrollToRowAtIndexPath:[NSIndexPath indexPathForRow:[newIndex intValue] inSection:0]
atScrollPosition:UITableViewScrollPositionTop animated:YES];
}else{
[self.table_view scrollToRowAtIndexPath:[NSIndexPath indexPathForRow:[newIndex intValue]-1 inSection:0]
atScrollPosition:UITableViewScrollPositionTop animated:YES];
}
self.view.userInteractionEnabled = YES;
}
728x90
'Developer > iOS' 카테고리의 다른 글
[IPhone]UIAlertView(경고창) 띄우는 방법과 경고창이 여러개일 때, 이벤트 구별하는 방법 (2) | 2011.01.12 |
---|---|
[IPhone] zBar를 이용하여 바코드 인식하기. (0) | 2010.12.03 |
UIScrollView에서 스크롤의 위치를 옮겨주는 방법 (2) | 2010.11.13 |
UITextView에서 return 눌렀을때, 이벤트 받기. (1) | 2010.11.13 |
모든 뷰에 대해서 touch event막기. (2) | 2010.10.25 |