首页 > 代码库 > iOS中tableview中headerview总保持在屏幕上方和随着屏幕滑动一起移动至消失
iOS中tableview中headerview总保持在屏幕上方和随着屏幕滑动一起移动至消失
1 : tableview中headerview总保持在屏幕上方 : 在代理方法中创建view,并添加到headerview上
l例子:
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
if ([self.title isEqualToString:@"幕后"]) {
NSArray *array = @[@"全部",@"电影自习室",@"电影会客厅",@"拍摄",@"综述",@"后期",@"器材"];
UIScrollView *scroller = [[UIScrollView alloc] init];
scroller.contentSize = CGSizeMake(560, 30);
scroller.backgroundColor = [UIColor whiteColor];
scroller.showsHorizontalScrollIndicator = NO;
UISegmentedControl *segment = [[UISegmentedControl alloc] initWithItems:array];
segment.tintColor = [UIColor lightGrayColor];
[[UISegmentedControl appearance] setTitleTextAttributes:@{NSForegroundColorAttributeName : [UIColor blackColor]} forState:UIControlStateSelected];
[scroller addSubview:segment];
return scroller;
}
return nil;
}
2 : 想随着屏幕滑动一起移动至消失的话: 就直接调用属性方法,将创建的view指定到headerview的试图()
l例子: {在viewdidload中}
self.headerView = [[HeaderView alloc] initWithFrame:CGRectMake(0, 0, 320, 150)];
self.tableView.tableHeaderView = self.headerView;
iOS中tableview中headerview总保持在屏幕上方和随着屏幕滑动一起移动至消失
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。