Developer/iOS

IPhone 지정한 시간 후에 메소드 호출하기.(스크롤 이동)

블로blow 2010. 11. 23. 16:32
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