zoukankan      html  css  js  c++  java
  • 点击cell动态修改高度动画

    点击cell动态修改高度动画


    效果

    源码

    https://github.com/YouXianMing/Animations

    //
    //  TapCellAnimationController.m
    //  Animations
    //
    //  Created by YouXianMing on 16/4/8.
    //  Copyright © 2016年 YouXianMing. All rights reserved.
    //
    
    #import "TapCellAnimationController.h"
    #import "ShowTextCell.h"
    #import "ShowTextModel.h"
    #import "CellDataAdapter.h"
    #import "UIFont+Fonts.h"
    #import "UIView+SetRect.h"
    
    @interface TapCellAnimationController () <UITableViewDelegate, UITableViewDataSource>
    
    @property (nonatomic, strong) UITableView    *tableView;
    @property (nonatomic, strong) NSMutableArray *datasArray;
    
    @end
    
    @implementation TapCellAnimationController
    
    - (void)setup {
        
        [super setup];
        
        [self createDataSource];
        
        [self buildTableView];
    }
    
    #pragma mark - DataSource
    
    - (void)createDataSource {
        
        self.datasArray = [NSMutableArray array];
        
        NSArray *strings = @[
                             @"AFNetworking is a delightful networking library for iOS and Mac OS X. It's built on top of the Foundation URL Loading System, extending the powerful high-level networking abstractions built into Cocoa. It has a modular architecture with well-designed, feature-rich APIs that are a joy to use. Perhaps the most important feature of all, however, is the amazing community of developers who use and contribute to AFNetworking every day. AFNetworking powers some of the most popular and critically-acclaimed apps on the iPhone, iPad, and Mac. Choose AFNetworking for your next project, or migrate over your existing projects—you'll be happy you did!",
                             
                             @"黄色的树林里分出两条路,可惜我不能同时去涉足,我在那路口久久伫立,我向着一条路极目望去,直到它消失在丛林深处。但我却选了另外一条路,它荒草萋萋,十分幽寂,显得更诱人、更美丽,虽然在这两条小路上,都很少留下旅人的足迹,虽然那天清晨落叶满地,两条路都未经脚印污染。呵,留下一条路等改日再见!但我知道路径延绵无尽头,恐怕我难以再回返。也许多少年后在某个地方,我将轻声叹息把往事回顾,一片树林里分出两条路,而我选了人迹更少的一条,从此决定了我一生的道路。",
                             
                             @"★タクシー代がなかったので、家まで歩いて帰った。★もし事故が発生した场所、このレバーを引いて列车を止めてください。(丁)为了清楚地表示出一个短语或句节,其后须标逗号。如:★この薬を、夜寝る前に一度、朝起きてからもう一度、饮んでください。★私は、空を飞ぶ鸟のように、自由に生きて行きたいと思った。*****为了清楚地表示词语与词语间的关系,须标逗号。标注位置不同,有时会使句子的意思发生变化。如:★その人は大きな音にびっくりして、横から飞び出した子供にぶつかった。★その人は、大きな音にびっくりして横から飞び出した子供に、ぶつかった。",
                             
                             @"Two roads diverged in a yellow wood, And sorry I could not travel both And be one traveler, long I stood And looked down one as far as I could To where it bent in the undergrowth; Then took the other, as just as fair, And having perhaps the better claim, Because it was grassy and wanted wear; Though as for that the passing there Had worn them really about the same, And both that morning equally lay In leaves no step had trodden black. Oh, I kept the first for another day! Yet knowing how way leads on to way, I doubted if I should ever come back. I shall be telling this with a sigh Somewhere ages and ages hence: Two roads diverged in a wood, and I- I took the one less traveled by, And that has made all the difference. ",
                             
                             @"Star "https://github.com/YouXianMing" :)"
                             ];
        
        for (int i = 0; i < strings.count; i++) {
            
            ShowTextModel *model = [[ShowTextModel alloc] init];
            model.inputString    = strings[i];
            
            [model calculateTheNormalStringHeightWithStringAttribute:@{NSFontAttributeName : [UIFont HeitiSCWithFontSize:14.f]} fixedWidth:Width - 20];
            [model calculateTheExpendStringHeightWithStringAttribute:@{NSFontAttributeName : [UIFont HeitiSCWithFontSize:14.f]} fixedWidth:Width - 20];
            
            CellDataAdapter *adapter = [CellDataAdapter cellDataAdapterWithCellReuseIdentifier:@"ShowTextCell" data:model
                                                                                    cellHeight:model.normalStringHeight
                                                                                      cellType:kShowTextCellNormalType];
            [self.datasArray addObject:adapter];
        }
    }
    
    #pragma mark - UITableView
    
    - (void)buildTableView {
        
        self.tableView                = [[UITableView alloc] initWithFrame:self.contentView.bounds];
        self.tableView.delegate       = self;
        self.tableView.dataSource     = self;
        self.tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
        
        [self.tableView registerClass:[ShowTextCell class] forCellReuseIdentifier:@"ShowTextCell"];
        [self.contentView addSubview:self.tableView];
    }
    
    - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
        
        return self.datasArray.count;
    }
    
    - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
        
        CellDataAdapter *dataAdapter = self.datasArray[indexPath.row];
        
        CustomCell *cell = [tableView dequeueReusableCellWithIdentifier:dataAdapter.cellReuseIdentifier];
        cell.data        = dataAdapter.data;
        cell.dataAdapter = dataAdapter;
        cell.tableView   = tableView;
        cell.indexPath   = indexPath;
        [cell loadContent];
        
        return cell;
    }
    
    - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
        
        ShowTextCell *cell = [tableView cellForRowAtIndexPath:indexPath];
        [cell changeState];
    }
    
    - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
        
        CellDataAdapter *dataAdapter = self.datasArray[indexPath.row];
        
        return dataAdapter.cellHeight;
    }
    
    @end

    细节

  • 相关阅读:
    POJ 1161 Walls ( Floyd && 建图 )
    POJ 1252 Euro Efficiency ( 完全背包变形 && 物品重量为负 )
    POJ 3111 K Best ( 二分 )
    2017乌鲁木齐网络赛 J题 Our Journey of Dalian Ends ( 最小费用最大流 )
    POJ 2112 Optimal Milking ( 经典最大流 && Floyd && 二分 )
    POJ 3281 Dining ( 最大流 && 建图 )
    POJ 2391 Ombrophobic Bovines ( 经典最大流 && Floyd && 二分 && 拆点建图)
    冲刺第一周第一天
    学习进度条12/3到12/9
    四则运算2
  • 原文地址:https://www.cnblogs.com/YouXianMing/p/5370309.html
Copyright © 2011-2022 走看看