怎么实现类似tableview的悬浮header动态改变值

//    self.bb  = [[UILabel alloc]init];
//    self.bb.backgroundColor = [UIColor redColor];
//    [self.view addSubview:self.bb];
//    [self.bb mas_makeConstraints:^(MASConstraintMaker *make) {
//        make.top.offset(70);
//        make.left.right.offset(0);
//        make.height.offset(40);
//    }];
}
-(void)scrollViewDidScroll:(UIScrollView *)scrollView{

//    [self getNowTopSectionView];
}
//// 获取tableView最上面悬停的SectionHeaderView
//- (void)getNowTopSectionView {
//    NSArray  *cellArray = [self.tableView visibleCells];
//    NSInteger nowSection = -1;
//    if (cellArray) {
//        UITableViewCell *cell = [cellArray firstObject];
//        NSIndexPath *indexPath = [self.tableView indexPathForCell:cell];
//        nowSection = indexPath.section;
//    }
//    NSLog(@"当前悬停的组头是:%ld",nowSection);
//    self.bb.text = [NSString stringWithFormat:@"当前是第%ld个分区",nowSection];
//}

你可能感兴趣的:(怎么实现类似tableview的悬浮header动态改变值)