UITableView 视差效果

之前在项目中用过一个视差效果,其实实现并不是很难,我们先看一下效果 </br>

视差效果.gif
大概说一下思路:</br>

每个cell中有一个UIImageView,在tableview向上滑动的时候,cell中的imageview相对cell向下移动,形成一个视差效果。也就是说,除了屏幕最上端的cell中的imageview的y为0以外,下面的cell中的imageview的Y值均为负值。

接下来就依照已知量来计算每个imageView的y值,并且在tableview滚动的时候实时更改imageView的Y值。

已知量:</br>

  1. tableView的高度(tableViewHeight)</br>
  2. tableView的偏移量</br>
  3. cell的高度</br>
  4. imageView的高度</br>
  5. cell的Y值
  6. cell相主屏幕的偏移量(cellOffset) -> cellY值 - tableView的偏移量</br>

求imageView的偏移量(imageViewOffset)。如下图所示。

图解.png

思路:
当cell的偏移量变为0的时候,imageViewY的值也由负值变为0。</br>
imageViewY的最大值为 imageViewHeight - cellHeight。</br>
因此可得如下公式:</br>
cellOffset/tableViewHeight = imageViewOffset/(imageViewHeight - cellHeight);</br>
imageViewOffset = cellOffset/tableViewHeight * (imageViewHeight - cellHeight);

好了,啰嗦完了,上代码:
新建一个工程,在工程中自定义一个cell,cell中放一个UIImageView控件,让UIImageView控件的高度大于Cell的高度。我这里设置为300;cell的高度设为200;

并且增加两个方法:

    // 获取图片最大偏移量
    - (CGFloat)imageOverflowHeight;
    // 重新设置图片偏移量
    - (void)setImageOffset:(CGPoint)imageOffset;

自定义cell.m中的代码如下:

    -(instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
    {
        self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];

        if (self) {
    
            _mainImageView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, [[UIScreen mainScreen] bounds].size.width , 300)];
    
            _mainImageView.contentMode = UIViewContentModeScaleAspectFill;
    
            [self.contentView addSubview:_mainImageView];
    
            _titleLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 80, [UIScreen mainScreen].bounds.size.width, 40)];
    
            _titleLabel.backgroundColor = [UIColor colorWithRed:0.94 green:0.94 blue:0.94 alpha:0.50];
    
            _titleLabel.text = @"这是图片上的文字";
    
            _titleLabel.textAlignment = 1;
    
            [self.contentView addSubview:_titleLabel];
        }

        return self;
    }

    /**
     *  返回图片大于imageView的高度
     *
     *  @return 图片大于imageView的高度
     */
    - (CGFloat)imageOverflowHeight
    {
        // 减200 是因为cell的高度设为200,所以直接写固定值了
        return _mainImageView.frame.size.height - 200;
    }

    /**
     *  设置imageView偏移量
     *
     *  @param imageOffset 偏移量
     */
    - (void)setImageOffset:(CGPoint)imageOffset
    {
        CGRect frame = _mainImageView.frame;
        frame.origin = imageOffset;
        _mainImageView.frame = frame;
    }

在VC中添加一个tableview控件,工程中拖入一些图片备用。VC.m的代码如下:

    @interface ViewController ()<UITableViewDelegate, UITableViewDataSource>
    @property (nonatomic, strong) NSMutableArray *sourceArr;
    @property (nonatomic, strong) UITableView *mainTable;
    @end

    @implementation ViewController

    - (void)viewDidLoad {
        [super viewDidLoad];

        _sourceArr = [NSMutableArray array];

        for (NSInteger i = 1; i <= 44; i++) {
    
               NSString *imageName = [NSString stringWithFormat:@"img%ld.jpg", i];
        
                [_sourceArr addObject:imageName];
    
        }

        _mainTable = [[UITableView alloc] initWithFrame:self.view.frame style:UITableViewStylePlain];

        _mainTable.delegate = self;

        _mainTable.dataSource = self;

        _mainTable.separatorStyle = UITableViewCellSeparatorStyleNone;

        [_mainTable registerClass:[LTParallaxCell class] forCellReuseIdentifier:@"cell"];

        [self.view addSubview:_mainTable];


    }

    /**
     *  设置imageView的偏移量
     *
     *  @param cell
     */
    - (void)updateImageViewCellOffset:(LTParallaxCell *)cell
    {
        // 获取cell的偏移量
        CGFloat cellOffset = cell.frame.origin.y - self.mainTable.contentOffset.y;
        // 获取imageView的最大偏移量
        CGFloat imgMaxHeight = [cell imageOverflowHeight];
        // 计算imageView新的偏移量
        CGFloat offset = 0.0f - imgMaxHeight * cellOffset / self.mainTable.frame.size.height;
        // 设置imageView新的偏移量
        [cell setImageOffset:CGPointMake(0.0f, offset)];

    }

    - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
    {
        return 1;
    }

    - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
    {
        return [_sourceArr count];
    }

    - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
    {
        LTParallaxCell *cell        = [tableView dequeueReusableCellWithIdentifier:@"cell"];

        cell.mainImageView.image    = [UIImage imageNamed:[_sourceArr objectAtIndex:indexPath.row]];

        cell.selectionStyle         = UITableViewCellSelectionStyleNone;

        cell.clipsToBounds          = YES;

        return cell;
    }

    - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
    {
        return 200;
    }

    #pragma mark - UIScrollViewdelegate methods

    - (void)scrollViewDidScroll:(UIScrollView *)scrollView
    {
        for (LTParallaxCell *cell in self.mainTable.visibleCells) {
            [self updateImageViewCellOffset:cell];
        }
    }

    #pragma mark - UITableViewDelegate

    - (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
    {
        [self updateImageViewCellOffset:(LTParallaxCell *)cell];
    }

    - (void)didReceiveMemoryWarning {
        [super didReceiveMemoryWarning];
        // Dispose of any resources that can be recreated.
    }

    @end

至此,一个视差效果就完成了,如果有什么错误的地方欢迎大家指正。</br>
本人个人博客地址:http://www.lrymlt.cn/blog/

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

推荐阅读更多精彩内容