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

自动计算尺寸列表功能案例ios源码

时间:2014-11-25 10:26:42      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:style   http   io   ar   color   os   使用   sp   for   

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

使用方法:


使用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

自动计算尺寸列表功能案例ios源码

标签:style   http   io   ar   color   os   使用   sp   for   

原文地址:http://www.cnblogs.com/huasili/p/4120174.html

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