初始化
@property (nonatomic, strong) UITableView *tbvData;
- (UITableView *)tbvData
{
if (!_tbvData)
{
UITableView *tableView = [[UITableView alloc] initWithFrame:CGRectZero style:UITableViewStylePlain];
tableView.delegate = self;
tableView.dataSource = self;
tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
tableView.backgroundColor = kBgColor;
[tableView registerClass:[UITableViewCell class] forCellReuseIdentifier:@"cell"];
_tbvData = tableView;
}
return _tbvData;
}
[self.view addSubview:self.tbvData];
[self.tbvData mas_makeConstraints:^(MASConstraintMaker *make) {
make.edges.equalTo(self.view);
}];
UITableViewDelegate,UITableViewDataSource
自定义cell,分区头部,尾部
IB
UINib *cellNib = [UINib nibWithNibName:@"MineSimpleTitleTbvCell" bundle:nil];
[tableView registerNib:cellNib forCellReuseIdentifier:@"MineSimpleTitleTbvCell"];
UINib *sectionHeadNib = [UINib nibWithNibName:@"MyCustomersChildTbvHeadView" bundle:nil];
[tableView registerNib:sectionHeadNib forHeaderFooterViewReuseIdentifier:@"MyCustomersChildTbvHeadView"];
代码
[tableView registerClass:[YZGTableVIewCell class] forCellReuseIdentifier:@"YZGTableVIewCell"];
[tableView registerClass:[YZGSectionHeadView class] forHeaderFooterViewReuseIdentifier:@"YZGSectionHeadView"];
下拉刷新
_tableView.mj_footer = [MJRefreshAutoNormalFooter footerWithRefreshingBlock:^{
}];
_tableView.mj_header = [MJRefreshNormalHeader headerWithRefreshingBlock:^{
}];
_tableView.mj_footer.hidden = YES;
[__weakSelf.tableView.mj_header endRefreshing];
[__weakSelf.tableView.mj_footer endRefreshingWithNoMoreData];//设置没有更多数据
UITableViewDelegate,UITableViewDataSource
表头,表尾
@property (nonatomic, strong) MJTableHeadView *tbvHeadView;
@property (nonatomic, strong) MJTableFootView *tbvFootView;
IB
- (AddWeiXinTbvFootView *)tbvFootView {
if (!_tbvFootView) {
_tbvFootView = (AddWeiXinTbvFootView *)[NSBundle.mainBundle loadNibNamed:@"AddWeiXinTbvFootView" owner:self options:nil].lastObject;
_tbvFootView.frame = CGRectMake(0, 0, SCREEN_WIDTH, 130);
_tbvFootView.autoresizingMask = UIViewAutoresizingNone;
}
return _tbvFootView;
}
- (MyBalanceTbvHeadView *)tbvHeadView {
if (!_tbvHeadView) {
_tbvHeadView = (MyBalanceTbvHeadView *)[NSBundle.mainBundle loadNibNamed:@"MyBalanceTbvHeadView" owner:self options:nil].lastObject;
_tbvHeadView.frame = CGRectMake(0, 0, SCREEN_WIDTH, AUTO_MATE_WIDTH(200));
_tbvHeadView.autoresizingMask = UIViewAutoresizingNone;
}
return _tbvHeadView;
}
代码
- (MJTableFootView *)tbvFootView {
if (!_tbvFootView) {
_tbvFootView = [[MJTableFootView alloc]initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, 200)];
}
return _tbvFootView;
}
- (MJTableHeadView *)tbvHeadView {
if (!_tbvHeadView) {
_tbvHeadView = [[MJTableHeadView alloc]initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, 200)];
}
return _tbvHeadView;
}
tableView.tableHeaderView = self.tbvHeadView;
tableView.tableFooterView = self.tbvFootView;
常用代理方法
#pragma mark ************** UITableView 代理方法
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;
}
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return _dataArray.count;
}
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
return 50;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *cellIden = @"cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIden];
if (!cell) {
cell = [[UITableViewCell alloc] initWithStyle:(UITableViewCellStyleValue1) reuseIdentifier:cellIden];
}
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;//右边尖括号
cell.textLabel.text = [NSString stringWithFormat:@"%ld",indexPath.row];
cell.selectionStyle = UITableViewCellSelectionStyleNone;//去掉点击效果
return cell;
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
if(self.cellClickBlack)
{
self.cellClickBlack(_dataArray[indexPath.row]);
}
}
分区头部,尾部
/*分区头部部高度*/
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
return 50;
}
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
YZGSectionHeadView *sectionHeadView = [tableView dequeueReusableHeaderFooterViewWithIdentifier:@"YZGSectionHeadView"];
return sectionHeadView;
}
/*分区尾部高度*/
- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section
{
return 100;
}
- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section
{
YZGSectionFootView *sectionFootView = [tableView dequeueReusableHeaderFooterViewWithIdentifier:@"YZGSectionFootView"];
return sectionFootView;
}
UITableView 方法,特性
##默认选中第一行
NSIndexPath * path = [NSIndexPath indexPathForItem:0 inSection:0];
[self tableView:self.tbvData didSelectRowAtIndexPath:path];
##一句话去除UITableView底部多余行及分割线
tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];
##取消分割线
tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
##分割线颜色
tableView.separatorColor = [UIColor redColor];
##右边尖括号
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
##去掉点击效果
cell.selectionStyle = UITableViewCellSelectionStyleNone;
##一个section刷新
NSIndexSet *indexSet=[[NSIndexSet alloc]initWithIndex:2];
[self.tbvData reloadSections:indexSet withRowAnimation:UITableViewRowAnimationAutomatic];
##一个cell刷新
NSIndexPath *indexPath=[NSIndexPath indexPathForRow:3 inSection:0];
[self.tbvData reloadRowsAtIndexPaths:[NSArray arrayWithObjects:indexPath,nil] withRowAnimation:UITableViewRowAnimationNone];
##滚动到指定位置
NSIndexPath * dayOne = [NSIndexPath indexPathForRow:0 inSection:2];
[self.tbvData scrollToRowAtIndexPath:dayOne atScrollPosition:UITableViewScrollPositionTop animated:YES];
##滚动到顶部
[self.tableView setContentOffset:CGPointMake(0,0) animated:NO];
##cell 底部留空白
- (void)setFrame:(CGRect)frame
{
frame.size.height -= 10;
[super setFrame:frame];
}
##cell 数据少,直接 ,不需要复用
UITableViewCell *cell = [UITableViewCell alloc]init]
##iOS 11 设配 滑动卡顿(漂移和抽疯的现象)3句不少
tableView.estimatedRowHeight = 0;
tableView.estimatedSectionHeaderHeight = 0;
tableView.estimatedSectionFooterHeight = 0;
##点击松开灰色取消
[tableView deselectRowAtIndexPath:indexPath animated:true];
##取消向下偏移 64/20
if (@available(iOS 11.0, *)) {
self.tbvData.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
}else {
self.automaticallyAdjustsScrollViewInsets = NO;
}
##禁止滑动
tableView.scrollEnabled = NO;
##分割线边距
tableView.separatorInset= UIEdgeInsetsMake(0,55, 0, 0);
##tableHeadView 用xib 时候用,高度会出错
tableView.autoresizingMask = UIViewAutoresizingNone;
##注意cell 约束的内边距
tableView.contentInset = UIEdgeInsetsMake(0, 0, 15, 0);
## sectionView 有默认颜色,xib 不修改他的 颜色,添加一个view
- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section
{
UIView *sectionHeadView = [[UIView alloc]init];
sectionHeadView.backgroundColor = tableView.backgroundColor;
return sectionHeadView;
}
#点击颜色修改
cell.selectedBackgroundView=[[UIView alloc]initWithFrame:cell.frame];
cell.selectedBackgroundView.backgroundColor= kBgColor;
#刷新后置顶
if(self.pageNumber == 1 && self.dataArray.count > 0){
NSIndexPath * indexPath = [NSIndexPath indexPathForRow:0 inSection:0];
[self.tbvData scrollToRowAtIndexPath:indexPath atScrollPosition:UITableViewScrollPositionNone animated:NO];
}
#TableViewCell 存UITableView 并自动计算高度
Outpatient 文件夹
遇到的一些坑
###隐藏某个cell 时候,高度为0时候,可能出现约束冲突,切换普通cell
UITableViewCellStyleValue1 搜索
###UITableViewStyleGroup 的 heightForFooterInSection 默认都是 22
设置 分区 头尾 为 0 无效
设置UITableViewStyleGroup 时候,要让分区尾部为0
(这里有一个小小的技巧,我们设置 0.01 的时候,这个时候对UITableVIew是有作用的);
###button 添加在 cell 上,当button 设置不可点击时,点击button 时会触发cell 的点击事件,
现在让button 不可点击转态,点击button 不会触发cell 的点击事件
(可以给 让button 添加在 cell 的 一个 bottomVIew 上,给父视图添加一个空的手势点击事件,阻止事件chuan'd)
设置tableView右侧索引
https://www.jianshu.com/p/2b87b09488e6
UITableview 添加索引后整体内容左移
https://www.jianshu.com/p/8a46869b18b2
tableViewCell里嵌套collectionView
http://www.hangge.com/blog/cache/detail_1591.html
https://www.jianshu.com/p/b907c198473d
UITableView自动计算cell高度
https://github.com/forkingdog/UITableView-FDTemplateLayoutCell
https://www.jianshu.com/p/64f0e1557562
https://www.jianshu.com/p/af4bc69839d8
UITableView嵌套 UIScrollView
https://www.jianshu.com/p/8bf6c2953da3
UITableView 优化
https://blog.csdn.net/hmh007/article/details/54907560
UITableView 左滑删除
https://www.jianshu.com/p/2f37d553edb0
tableViewCell图片点击放大缩小回原位
https://blog.csdn.net/hero_wqb/article/details/50909765
TableViewCell注册和不注册复用的问题
https://www.jianshu.com/p/12beb11ae63a
UITableViewcell分割线相关、隐藏某条分割线
https://blog.csdn.net/ZHFDBK/article/details/79411351
UITableView 的总结
http://www.jianshu.com/p/a5f6c534695e
http://www.jianshu.com/p/344ffc33a435
http://www.jianshu.com/p/481da2f1bf7a
http://www.jianshu.com/p/7e6b5c6c6913
拓展
willDisplayCell 和cellForRowAtIndexPath区别
UITableViewCell 嵌套 UICollectionView