在我的应用程序中,我有一个TableView,它有一个标题,我想先隐藏,直到用户滚动tableview。我的问题是当视图加载时,1秒钟你可以看到桌面视图向上移动。我不想看到这个动作。 我怎样才能正确实现这一目标?
这是我的代码:
- (void)viewWillAppear:(BOOL)animated
{
[super viewWillAppear:animated];
[self performSelector:@selector(hideSearchBar) withObject:nil afterDelay:0.0f];
}
- (void)hideSearchBar
{
self.tblView.contentOffset = CGPointMake(0, 40);
}