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

iOS--CollectionView添加类似TableView的TableViewHeaderView 和 SectionHeader 的置顶悬停效果

时间:2017-11-30 16:18:03      阅读:309      评论:0      收藏:0      [点我收藏+]

标签:log   details   content   view   href   .net   set   nbsp   添加   

1.悬停效果

   http://blog.csdn.net/liangyc0129/article/details/51781722

  主要参考此博客,使用 JHHeaderFlowLayout.h。生成UICollectionReusableView即可。

  

 JHHeaderFlowLayout *layout = [[JHHeaderFlowLayout alloc] init];

        layout.minimumInteritemSpacing = 0;

        layout.minimumLineSpacing = 10;

        layout.sectionInset = UIEdgeInsetsMake(kLeftSpace, kLeftSpace, kLeftSpace, kLeftSpace);
         //naviHeight 决定顶部悬浮高度
        layout.naviHeight = KNAV_HEIGHT;

 

2.顶部 类似 TableViewHeaderView效果

http://blog.csdn.net/wangyanchang21/article/details/51734750

  参考此博文。当有顶部设置轮播图、悬浮headerview上有view效果时,tableView 有 TableViewHeaderView,collectionView 是没有的,

  所以改变 collectionview 的内延边距,将图片添加在内延空白的位置。

  

//1.设置collectionview contentInset
_collectionView.contentInset = UIEdgeInsetsMake(topImg_Height, 0, 0, 0);
//2.填充图片View
UIView *topView = [[UIView alloc]initWithFrame:CGRectMake(0, -topImg_Height, kScreenW, topImg_Height)];
   [self.collectionView addSubview:topView];

  注意:这种方法是可行的,但是在两种效果都需要的情况下,要注意collectionView 的 contentOffset,添加header后,contentOffset此时为-topImg_Height.

 

 

 

 

 

 

 

iOS--CollectionView添加类似TableView的TableViewHeaderView 和 SectionHeader 的置顶悬停效果

标签:log   details   content   view   href   .net   set   nbsp   添加   

原文地址:http://www.cnblogs.com/qiangtian/p/7929467.html

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