UITableView有两个headerView:tableHeaderView.和headerInsectionView(组头视图).   给tableView添加这两个View:tableHeaderView是通过tableView.tableHeaderView = XXXView 的方式添加的,而headerInsectionView是通过 - (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSI…
UITableView的headerView展开缩放动画 效果 源码 https://github.com/YouXianMing/Animations // // HeaderViewTapAnimationController.m // Animations // // Created by FrankLiu on 15/11/30. // Copyright © 2015年 YouXianMing. All rights reserved. // #import "HeaderViewTa…
在我们利用 UITableView 展示我们的内容的时候,我需要在顶部放一个不同于一般的cell的 界面,这个界面比较独特. 1. 所以我就把它 作为一个section的 headerView. 也就是在函数: - (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section 里面返回 这个UIView. 但是,由于这个UIView占的空间很大,基本占用整个屏幕的高度,而滚动table…
在我们利用 UITableView 展示我们的内容的时候,我需要在顶部放一个不同于一般的cell的 界面,这个界面比较独特. 1. 所以我就把它 作为一个section的 headerView. 也就是在函数: - (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section 里面返回 这个UIView. 但是,由于这个UIView占的空间很大,基本占用整个屏幕的高度,而滚动table…
在进行UITableView开发的时候,我们有时希望在cell的上面放置一些按钮之类的空间,又想让这些空间跟着cell一起滚动,刚开始想着hederView,注意,这是tableView的section的hederView,代码如下 - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section { ; } - (UIView *)tableView:(UITableView *)…
header通过下面两个代理方法设置  - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section - (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section footer通过下面两个 - (CGFloat)tableView:(UITableView *)ta…
UITabelView在style为plain时,在上拉是section始终粘在最顶上而不是跟随滚动而消失或者出现 可以通过设置UIEdgeInsetsMake: - (void)scrollViewDidScroll:(UIScrollView *)scrollView { if (scrollView == self.myTableView) { CGFloat sectionHeaderHeight = 40;(section头部的高度) if (scrollView.contentOff…
关于顶部图片下拉放大,在用户展示的个人中心显示用户个人头像信息,设置UITableView的headerView实现,UITableView继承自UIScrollView,同样的设置UIScrollView的顶部图片也可以实现同样的效果,简单看一下实现的效果: 控制器中设置需要的属性变量: @property (strong,nonatomic) UITableView *tableView; @property (strong,nonatomic) NSArray *data; @proper…
平常遇到大多数的带有列表的应用都会遇到这个场景:在列表顶端有一个Header,当向上滑动列表时,压缩header,向下滑动列表到头时,展开header.这种样式在例如微博,twitter这些展示动态的界面里很常见.这种效果怎么实现呢?下面介绍我用的方法. 新博客:wossoneri.com 先看一下效果图 首先看一下BiliBili客户端的视频浏览界面.默认界面Header完全展开,并且Header显示AV号(别乱想,就是视频编号了)以及播放按钮.滑动之后Header被压缩,按钮移到AV号左边.…
UITableView在开发中是用的最多的控件,它包含两个代理:UITableViewDataSource,UITableViewDelegate,先熟悉下API 1.初始化 - (instancetype)initWithFrame:(CGRect)frame style:(UITableViewStyle)style; 2.UITableViewStyle typedef NS_ENUM(NSInteger, UITableViewStyle) { UITableViewStylePlain…