我使用这篇文章制作了标题:Table Header Views in StoryBoards
但是我无法在滚动时将标题粘贴(修复)到屏幕顶部。
如何实现?
P.S。表样式很简单,当我厌倦了重载viewForHeaderInSection
并返回标题视图的插座时,它变得更糟。
提前致谢!
答案 0 :(得分:9)
这里的代码我认为会使标题视图粘在桌面上(这不是它的默认行为):
-(void)scrollViewDidScroll:(UIScrollView *)scrollView
{
CGRect rect = self.tableHeaderView.frame;
rect.origin.y = MIN(0, self.tableView.contentOffset.y);
self.tableHeaderView.frame = rect;
}
另一种方法是为第一部分提供标题视图。您无法在viewForHeaderInSection
使用任何子视图,您必须返回尚未位于视图层次结构中的视图。该方法的优点是节标题视图设计在桌面上,缺点是您可能希望在特征中包含节的标题,这将破坏解决方案。
答案 1 :(得分:2)
我能够这样做(至少在iOS 6中),不知道为什么这个东西有效:)
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {
if(self.headerManualView == nil) {
//allocate the view if it doesn't exist yet
headerManualView = [[UIView alloc] init];
//create the button
UITextField *txtField = [[UITextField alloc] initWithFrame:CGRectMake(10, 3, 250, 44)];
//the button should be as big as a table view cell
txtField.borderStyle = UITextBorderStyleRoundedRect;
//set action of the button
//[txtField addTarget:self action:@selector(removeAction:) forControlEvents:UIControlEventTouchUpInside];
//add the button to the view
[headerManualView addSubview:txtField];
}
//return the view for the footer
return headerManualView;
}
答案 2 :(得分:1)
我认为最好使用UIViewController而不是故事板中的UITableViewController来实现这一点。只需在故事板的顶部放置一个标题,然后在标题下放置一个UITableView。