按下按钮后锁定UITable滚动

时间:2012-05-01 06:48:27

标签: iphone ios xcode ipad uitableview

  

可能重复:
  disable scrolling in a UITableView (iPhone SDK 3.0)

我想问一下按下按钮后是否可以锁定UITAble的滚动?那有什么代码吗?

下面是我的代码,我想将UITAble滚动到顶部,然后用户将无法向下滚动。

- (IBAction)export:(id)sender{


    NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:0];
    [self.tableView scrollToRowAtIndexPath:indexPath
                          atScrollPosition:UITableViewScrollPositionTop
                                  animated:YES];

}

1 个答案:

答案 0 :(得分:3)

不要忘记在下面的代码中添加前缀self

self.tableView.scrollEnabled = NO;

希望,这将是你......