zoukankan      html  css  js  c++  java
  • 自动计算尺寸列表功能案例ios源码

    源码HTKDynamicResizingCell,HTKDynamicResizingCell提供自动计算尺寸的TableViewCell/CollectionViewCel,只要设置了合适AutoLayout的约束。
    <ignore_js_op> 

    使用方法:


    使用CocoaPods添加: 
    pod 'HTKDynamicResizingCell', '~> 0.0.1' 
    pod install 

    或者直接将demo中的HTKDynamicResizingCell文件夹添加到自己的项目中。 
    用法基本和cell一样: 
    - (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath { 
         
        // Get cell 
        HTKSampleCollectionViewCell *cell = (HTKSampleCollectionViewCell *)[collectionView dequeueReusableCellWithReuseIdentifier:HTKSampleCollectionViewCellIdentifier forIndexPath:indexPath]; 
         
        // Load data 
        NSDictionary *dataDict = self.dataArray[indexPath.row]; 
        // Sample image 
        UIImage *image = [UIImage imageNamed:[NSString stringWithFormat:@"pic%i", arc4random_uniform(10) + 1]]; 
        [cell setupCellWithData:dataDict andImage:image]; 

        return cell; 


    详细的请参考demo中两个Sample VC的具体写法。

    详细说明:http://ios.662p.com/thread-2270-1-1.html

  • 相关阅读:
    redis在linux下的安装
    Redis在系统中的使用
    使用ServiceStackRedis操作redis
    Redis命令
    mongo增删改操作
    mongo c#驱动介绍操作
    LeetCode 19 删除链表的倒数第N个节点
    LeetCode 01 两数之和
    metapath2vec 笔记
    Q&A(一)
  • 原文地址:https://www.cnblogs.com/huasili/p/4120174.html
Copyright © 2011-2022 走看看