码迷,mamicode.com
首页 > 移动开发 > 详细

iOS中tableview中headerview总保持在屏幕上方和随着屏幕滑动一起移动至消失

时间:2014-10-27 17:46:17      阅读:427      评论:0      收藏:0      [点我收藏+]

标签:style   io   color   os   ar   for   sp   div   on   

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总保持在屏幕上方和随着屏幕滑动一起移动至消失

标签:style   io   color   os   ar   for   sp   div   on   

原文地址:http://blog.csdn.net/huhuahua6/article/details/40508911

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!