我想问一下按下按钮后是否可以锁定UITAble的滚动?那有什么代码吗?
下面是我的代码,我想将UITAble滚动到顶部,然后用户将无法向下滚动。
- (IBAction)export:(id)sender{
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:0];
[self.tableView scrollToRowAtIndexPath:indexPath
atScrollPosition:UITableViewScrollPositionTop
animated:YES];
}
答案 0 :(得分:3)
不要忘记在下面的代码中添加前缀self
。
self.tableView.scrollEnabled = NO;
希望,这将是你......