iOS-TableView的headerView(为scrollview)下拉等比例放大

自定义TableView的顶部HeaderView,在Headerview里面添加ScrollView,实现左右滑动并且下拉等比例方法
原图
效果图
.h  
@interface HeaderImageView : UIView
//改变图片的大小
- (void)setOffset:(CGFloat)offsetY;
@end

.m
#import "HeaderImageView.h"
#import "UIView+DSLExtension.h"

@interface HeaderImageView()<UIScrollViewDelegate>
@property(nonatomic,strong)UIView *bgView;
@property(nonatomic,strong)UIScrollView *scrollView;
@property(nonatomic,strong)UIPageControl *pageController;

@property(nonatomic,strong)UIView *agencyBgView;//机构父View
@property(nonatomic,strong)UIImageView *agencyIconImageView;//机构头像
@property(nonatomic,strong)UILabel *workMainNameLabel;//机构名称
@property(nonatomic,strong)UILabel *certificationLabel;//机构认证
@end

@implementation HeaderImageView
{
    CGFloat page;
}
#pragma mark- 懒加载
- (UIView *)agencyBgView{
if (!_agencyBgView) {
    _agencyBgView = [[UIView alloc]init];
    [self addSubview:_agencyBgView];
}
return _agencyBgView;
}
- (UIImageView *)agencyIconImageView{
if (!_agencyIconImageView) {
    _agencyIconImageView = [[UIImageView alloc]init];
    [self.agencyBgView addSubview:_agencyIconImageView];
}
return _agencyIconImageView;
}
- (UILabel *)workMainNameLabel{
if (!_workMainNameLabel) {
    _workMainNameLabel = [[UILabel alloc]init];
    [self.agencyBgView addSubview:_workMainNameLabel];
}
return _workMainNameLabel;
}
- (UILabel *)certificationLabel{
if (!_certificationLabel) {
    _certificationLabel = [[UILabel alloc]init];
    [self.agencyBgView addSubview:_certificationLabel];
    _certificationLabel.textColor = [UIColor lightGrayColor];
    _certificationLabel.font = [UIFont systemFontOfSize:13];
}
return _certificationLabel;
}
#pragma mark- 初始化
- (instancetype)initWithFrame:(CGRect)frame{
if (self = [super initWithFrame:frame]) {
    self.backgroundColor = [UIColor whiteColor];
    
    //创建背景View
    /*必须添加bgView*/
    UIView *bgView = [[UIView alloc]initWithFrame:frame];
    bgView.dsl_height = Screen_Width * (9.0/16);
    [self addSubview:bgView];
    self.bgView = bgView;
    
    //创建ScrollView
    UIScrollView *scrollView = [[UIScrollView alloc]initWithFrame:frame];
    scrollView.dsl_height = Screen_Width * (9.0/16);
    [self.bgView addSubview:scrollView];
    scrollView.showsVerticalScrollIndicator = NO;
    scrollView.showsHorizontalScrollIndicator = NO;
    scrollView.pagingEnabled = YES;
    scrollView.delegate = self;
    scrollView.clipsToBounds = NO;
    scrollView.bounces = NO;
    self.scrollView = scrollView;
    
    //创建轮播图片
    NSArray *imageArrays = @[@"http://i-imgp.fetionpic.com/fpic/pic1/M00/03/36/rBUyIVHbzL_UQHqzAAN-5r0lZ3c175.jpg",
                             @"http://imgsrc.baidu.com/forum/pic/item/a9773912b31bb0513c8dc1a2367adab44bede08b.jpg",
                             @"http://g.hiphotos.baidu.com/zhidao/pic/item/2f738bd4b31c870177a1ba3d277f9e2f0608ffd2.jpg"];
    [imageArrays enumerateObjectsUsingBlock:^(NSString  *imageStr, NSUInteger index, BOOL * _Nonnull stop) {
        
        UIImageView *imageView = [[UIImageView alloc]initWithFrame:CGRectMake([UIScreen mainScreen].bounds.size.width * index, 0, [UIScreen mainScreen].bounds.size.width, scrollView.dsl_height)];
        [scrollView addSubview:imageView];
        [imageView sd_setImageWithURL:[NSURL URLWithString:imageStr] placeholderImage:nil];
        imageView.contentMode = UIViewContentModeScaleAspectFill;
        imageView.tag = index + 20;
        imageView.clipsToBounds = YES;
        
    }];
    
    scrollView.contentSize = CGSizeMake([UIScreen mainScreen].bounds.size.width * imageArrays.count, 0);
    
    //创建pageController
    UIPageControl *pageController = [[UIPageControl alloc]initWithFrame:CGRectMake(self.frame.size.width/2, self.frame.size.height - 15 - 45 - Margin_Width * 2, 0, 0)];
    [self.bgView addSubview:pageController];
    pageController.numberOfPages = imageArrays.count;
    pageController.currentPageIndicatorTintColor = [UIColor redColor];//当前
    pageController.pageIndicatorTintColor = [UIColor whiteColor];//非当前
    self.pageController = pageController;
    
    self.agencyBgView.backgroundColor = [UIColor whiteColor];
    [self.agencyIconImageView sd_setImageWithURL:[NSURL URLWithString:@"https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1493895745509&di=8a4e0cc81fed5017d5a2ee1eb878447b&imgtype=0&src=http%3A%2F%2Fwww.lagou.com%2Fi%2Fimage%2FM00%2F01%2F1B%2FCgqKkVZf9BaASo6tAACEgPXklnA230.jpg"] placeholderImage:nil];
    self.workMainNameLabel.text = @"XXXXXXX";
    //self.workMainNameLabel.backgroundColor = DSLRandomColor;
    
    self.certificationLabel.text = @"XXXX:XXXXXXXXXX";
    //certificationLabel.backgroundColor = DSLRandomColor;
    
    [self.agencyBgView mas_makeConstraints:^(MASConstraintMaker *make) {
        make.top.equalTo(@(Screen_Width * (9.0/16) + Margin_Width));
        make.width.equalTo(@(Screen_Width));
        make.height.equalTo(@(45));
        make.left.equalTo(self);
    }];
    [self.agencyIconImageView mas_makeConstraints:^(MASConstraintMaker *make) {
        make.top.equalTo(self.agencyBgView);
        //make.top.equalTo(cycleScrollView.mas_bottom).offset(Margin_Height);
        make.width.height.equalTo(@(45));
        make.left.equalTo(self.agencyBgView).offset(15);
    }];
    [self.workMainNameLabel mas_makeConstraints:^(MASConstraintMaker *make) {
        make.top.equalTo(self.agencyIconImageView);
        make.width.equalTo(@(200));
        make.left.equalTo(self.agencyIconImageView.mas_right).offset(Margin_Width);
        make.height.equalTo(@(20));
    }];
    [self.certificationLabel mas_makeConstraints:^(MASConstraintMaker *make) {
        make.height.equalTo(@(20));
        make.left.equalTo(self.workMainNameLabel);
        make.bottom.equalTo(self.agencyIconImageView);
        make.right.equalTo(self).offset(-Margin_Width);
    }];
    
}
return self;
}

- (void)setOffset:(CGFloat)offsetY{

offsetY = offsetY < 0 ? offsetY : offsetY * 0.8;

//背景View
self.bgView.frame = CGRectMake(0, offsetY,Screen_Width,Screen_Width *(9.0/16) );

//变大的图片
UIImageView *imageView = [self.scrollView viewWithTag:page + 20];
imageView.frame = CGRectMake(Screen_Width * page, 0, Screen_Width, Screen_Width *(9.0/16) - offsetY);

//self.pageController
self.pageController.frame = CGRectMake(self.frame.size.width/2, self.frame.size.height - 15 - 45 - Margin_Width * 2 - offsetY, 0, 0);
}

#pragma mark- UIScrollViewDelegate
- (void)scrollViewDidScroll:(UIScrollView *)scrollView{

page = self.scrollView.contentOffset.x / Screen_Width;
self.pageController.currentPage = page;
}
@end

调用

headerView = [[HeaderImageView alloc]initWithFrame:CGRectMake(0, 0, Screen_Width, Screen_Width * (9.0/16) + 45 + Margin_Width * 2)];
self.tableView.tableHeaderView = headerView;

- (void)scrollViewDidScroll:(UIScrollView *)scrollView{
[headerView setOffset:self.tableView.contentOffset.y];
}

下载源码

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 211,561评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,218评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,162评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,470评论 1 283
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,550评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,806评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,951评论 3 407
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,712评论 0 266
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,166评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,510评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,643评论 1 340
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,306评论 4 330
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,930评论 3 313
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,745评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,983评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,351评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,509评论 2 348

推荐阅读更多精彩内容

  • 发现 关注 消息 iOS 第三方库、插件、知名博客总结 作者大灰狼的小绵羊哥哥关注 2017.06.26 09:4...
    肇东周阅读 12,064评论 4 62
  • 我以前遇到一个古板的语文老师,凡是作文,她就要求抄别人一个好开头(你们自己是没这个本事的),要三段式(这样写是最稳...
    也难绾系阅读 238评论 0 0
  • ▼峰会时间▼ 2016年11月11日(周五): 8:00-17:00 2016年11月12日(周六): 8:00-...
    JxxP阅读 495评论 0 0
  • 除夕的夜与往常的夜似乎不一样,少啦往日的平静,万家灯火通明,多啦少许的喧嚣,这个时间点大概所有人都在电视机前准备好...
    张晓涵venessal阅读 296评论 0 0
  • 其实我有抱负,我也有懒惰。有时候想为了梦想努力拼搏,可是一瞬间又想算了吧,就像想写一篇文章,看了个头码着码着字就想...
    怪_人_阿_瓜阅读 205评论 0 0