0
可能重複:
disable scrolling in a UITableView (iPhone SDK 3.0)鎖定UITable按鈕後,按滾動
我想問一下是否有可能被按下鎖定UITAble的按鈕後,滾動?有沒有任何代碼?
下面是我的代碼,我想滾動UITAble到頂部,那麼用戶將無法向下滾動。
- (IBAction)export:(id)sender{
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:0];
[self.tableView scrollToRowAtIndexPath:indexPath
atScrollPosition:UITableViewScrollPositionTop
animated:YES];
}