iOS 实现 UITableView左右滑动
最近有一个需求,便是页面不只需求上下滑动,一起需求支撑左右滑动,有点类似于 Excel 表格的款式,如下所示:
不积跬步,无以至千里
一. 运数组初始化用UIScrollView
上增加UITabl数组和链表的区别eVie数组和链表的区别w
首要,制作种作用有两种思路,一种是在
UIScrollView
上增加UITableVi程序员需要什么学历ew
, 设置self.scrolios16lView.contentSize
的宽高,依据tableView需求展现的内容的高度来设置;具体如下:代码计较简单,需求留意的是 self.scrollView
的Frame
和contentSize
是不同的,前者是self.scrollView本身的初始化游戏启动器失败视图区域数组公式,后者是scrollView
中内容的巨细,比方你要在100*100
的的区域内展现1000*1000
的图片,那么Frame
是100*100
,contentSize
便是1000*1000
代码如下数组去重方法:
#import "ImitationExcelVC.h"
@interface ImitationExcelVC ()<UIScrollViewDelegate, UITableViewDelegate, UITableViewDataSource>
@property(nonatomic, strong) UIScrollView *scrollView;
@property(nonatomic, strong) UITableView *tableView;
@end
@implementation ImitationExcelVC
- (void)viewDidLoad {
[super viewDidLoad];
self.scrollView = [[UIScrollView alloc] initWithFrame:CGRectMake(0, 0, Device_Width, Device_Height)];
self.scrollView.delegate = self;
self.scrollView.backgroundColor = [UIColor whiteColor];
self.scrollView.contentSize = CGSizeMake(2000, Device_Height);
self.scrollView.bounces = NO;
[self.view addSubview:self.scrollView];
self.tableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, 2000, Device_Height)];
self.tableView.delegate = self;
self.tableView.dataSource = self;
self.tableView.bounces = NO;
self.tableView.backgroundColor = [UIColor whiteColor];
[self.scrollView addSubview:self.tableView];
}
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
return 200;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
static NSString *identifierStr = @"cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identifierStr];
if (!cell) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:identifierStr];
}
// cell.frame = CGRectMake(0, 0, 980, 50);
cell.backgroundColor = [UIColor whiteColor];
NSString *str = @"鲁迅(20张)鲁迅,我国现代巨大的文学家、思维家和革命家。清朝光绪七年辛巳年八月初三(1881年9月25日)出生于浙江绍兴府会稽县东昌坊口新台门周家,原名周树人,后来在南京求学时学名为“周樟寿”,字豫山、豫亭、豫才。是我国现代小说的奠基人、我国现代文学的奠基人之一。至三十八岁,运用鲁迅为笔名。二弟周作人,三弟周建人,合称为“周氏三兄弟”。鲁迅1902年考取留日官费生,赴日本进东京的弘文学院学习。1904年初,入仙台医科专门学医,后弃医从文(详见《藤野先生》一文),回国从事文艺工作,希望用以改动国民精力。1905—1907年,参与革命党人的活动,发表了《摩罗诗力说》《文明偏至论》等论文。期间曾奉母命回国成婚,夫人朱安。1909年,与其弟周作人一起合译《域外小说集》,介绍外国文学,同年回国,先后在杭州、绍兴等地担任教师。";
cell.textLabel.text = [NSString stringWithFormat:@"%ld,%@",(long)indexPath.row,str];
return cell;
}
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
return 50;
}
@end
二. 方法二的左边标题不左右滑动
方法二具体作用和方法一不太相同,具体便是内容和方法一无不同,可是自身的左边标题是不会滑动的,方法二代码比较复杂,具体逻辑如下:
UITa字体设计bleViewCell
//首要,UITableViewCell上划分为左右两个区域,左边为标题,右侧为内容,内容滑动而标题不滑动
@interface WatchDataTableViewCell : UITableViewCell
@property(nonatomic, strong) UILabel *headerTitleLabel;
@property(nonatomic, strong) UIView *lineView;
@property(nonatomic, strong) UIView *rightView;
@property(nonatomic, strong) NSMutableArray *labelArr;
+ (instancetype)initWithTableView:(UITableView *)tableView withIndexPath:(NSIndexPath *)indexPath WithIndex:(NSInteger)number;
@end
+ (instancetype)initWithTableView:(UITableView *)tableView withIndexPath:(NSIndexPath *)indexPath WithIndex:(NSInteger)number {
static NSString *identifierStr = @"cell";
WatchDataTableViewCell *cell = (WatchDataTableViewCell *) [tableView dequeueReusableCellWithIdentifier:identifierStr];
if (cell == nil) {
cell = [[WatchDataTableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:identifierStr];
//这儿是展现左边标题的Label
cell.headerTitleLabel = [[UILabel alloc] init];
[cell.contentView addSubview:cell.headerTitleLabel];
cell.headerTitleLabel.textColor = [UIColor blackColor];
cell.headerTitleLabel.backgroundColor = [UIColor clearColor];
//为了避免重复增加元素,增加数据之前先将数组清空,
cell.labelArr = [NSMutableArray arrayWithCapacity:0];
[cell.labelArr removeAllObjects];
//初始化内容 view
cell.rightView = [[UIView alloc] init];
for (int i = 0; i < number; i++) { //把rightLabel 加入到scrollView里边
UILabel *label = [[UILabel alloc] init];
[cell.rightView addSubview:label];
// 将数据增加到数组里边
[cell.labelArr addObject:label];
//cell.rightView是展现数据内容的 view
cell.rightView.backgroundColor = [UIColor clearColor];
}
}
cell.selectionStyle = UITableViewCellSelectionStyleNone;
cell.backgroundColor = [UIColor colorWithRed:255/255.0 green:255/255.0 blue:255/255.0 alpha:1.0];
return cell;
}
- (void)layoutSubviews {
[super layoutSubviews];
[self.headerTitleLabel setFrame:CGRectMake(0, 0, 145, 40)];
for (int i = 0; i < self.labelArr.count; i++) { //表示第 n 行,遍历当前行的所搜 label,
UILabel *label = self.labelArr[i];
label.frame = CGRectMake(detailLblWith * i, 0, detailLblWith, cellHeight - 2);
label.textAlignment = NSTextAlignmentCenter;
label.font = [UIFont systemFontOfSize:13];
label.textColor = [UIColor colorWithRed:22 / 255.0 green:117 / 255.0 blue:250 / 255.0 alpha:1.0];
}
}
这儿的意思便是创立number
个 labe程序员是做什么的l 用于数据展现,增加到数组里边并在layoutSubviews
中将其frame 设置好,搭建好 UI 框架,等待数据填充
数据填充
此处展现核心代码
#define CELL_BACKGROUND_COLOR [UIColor grayColor]
#define detailLblWith 60
#define machineFactorWith 145
#define cellHeight 40
- (instancetype)initWithFrame:(CGRect)frame {
if (self = [super initWithFrame:frame]) {
//因为先加bigTableView后加smallScrollView才不至于让bigTableView的section header把smallScrollView挡住
self.tableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, Device_Width, Device_Height - topLayout - bottomLayout - 54) style:UITableViewStylePlain];
[self addSubview:self.tableView];
// 标题,这是是水平方向的标题
self.titleScrollView = [[UIScrollView alloc] initWithFrame:CGRectMake(machineFactorWith, 0, Device_Width - machineFactorWith, 30)];
self.titleScrollView.backgroundColor = [UIColor whiteColor];
self.titleScrollView.delegate = self;
// 内容的宽度,也即滑动的宽度
self.titleScrollView.contentSize = CGSizeMake(detailLblWith * 4, 30);
self.titleScrollView.showsHorizontalScrollIndicator = NO;
self.titleScrollView.bounces = NO;
// 数据标题
self.titleView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, detailLblWith * 4, 40)];
self.titleView.backgroundColor = [UIColor clearColor];
[self.titleScrollView addSubview:self.titleView];
[self addSubview:self.titleScrollView];
//为了避免 cell 高度问题导致 cell 不展现或许高度塌陷
if (@available(iOS 15.0, *)) {
self.tableView.sectionHeaderTopPadding = 0;
self.tableView.estimatedRowHeight = 40;
self.tableView.estimatedSectionHeaderHeight = 0;
self.tableView.estimatedSectionFooterHeight = 0;
}
self.tableView.delegate = self;
self.tableView.dataSource = self;
self.tableView.showsVerticalScrollIndicator = NO;
self.tableView.bounces = NO;//绷簧作用
// 此时scrollview的frame相对的是tableView的内容视图而不是其frame,所以高度应设置为CELL_HEIGHT 40 *CELL_COUNT 30 才不会显现不全
// frame的height小于contenSize的height的话scrollview就能够上下滑动,所以这儿设置成相同
self.scrollview = [[UIScrollView alloc] initWithFrame:CGRectMake(machineFactorWith, 30, Device_Width - machineFactorWith, cellHeight * 64)];
self.scrollview.delegate = self;
// content高设置为scrollview的frame的高度则无法上下滑动
self.scrollview.contentSize = CGSizeMake(detailLblWith * 64, cellHeight * self.inDoorDataArr.count);
self.scrollview.bounces = NO;//绷簧作用
[self.tableView addSubview:self.scrollview];
// 加载titleView
for (int i = 0; i < 64; i++) {
UILabel *label = [[UILabel alloc] init];
[self.titleView addSubview:label];
if (i == 0) {
label.text = @"主机";
} else {
label.text = [NSString stringWithFormat:@"内机%d", i];
}
label.textAlignment = NSTextAlignmentCenter;
label.font = [UIFont systemFontOfSize:13];
//Masonry布局
[label mas_makeConstraints:^(MASConstraintMaker *make) {
make.centerY.equalTo(self.titleView.mas_centerY);
make.left.mas_equalTo(detailLblWith * i);
make.width.mas_equalTo(detailLblWith);
make.height.mas_equalTo(cellHeight);
}];
}
self.addedArr = [NSMutableArray arrayWithCapacity:self.inDoorDataArr.count];
for (int i = 0; i < self.inDoorDataArr.count; i++) {
[self.addedArr addObject:[NSNumber numberWithBool:NO]];
}
}
return self;
}
#pragma mark - tableview delegate and datasource
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
WatchDataTableViewCell *cell = [WatchDataTableViewCell initWithTableView:tableView withIndexPath:indexPath WithIndex:64];
cell.headerTitleLabel.text = [NSString stringWithFormat:@"%@", self.inDoorDataArr[indexPath.row]];
cell.rightView.frame = CGRectMake(0, indexPath.row * cellHeight, 64 * detailLblWith, cellHeight);
//此处是设置 label 填充数据的函数,可疏忽
[self assignValueToCell:cell with:indexPath];
// ⚠️留意点一
// 处理rightView重复增加到scrollview的 bug,找出归于scrollview不归于tableView的rightView,也即冗余数据,删去即可
NSArray *arrs = self.scrollview.subviews;
NSArray *arrs1 = self.tableView.subviews;
NSMutableArray *rightArr = [NSMutableArray arrayWithCapacity:0];
NSMutableArray *right1111Arr = [NSMutableArray arrayWithCapacity:0];
// 将一切的 cell 的 rightView 加入到数组中
for (int i = 0; i < arrs1.count; i++) {
if ([arrs1[i] isKindOfClass:[AUXWatchDataTableViewCell class]]) {
AUXWatchDataTableViewCell *tempcell = arrs1[i];
[rightArr addObject:tempcell.rightView];
}
}
// 比较两个数组,找出scrollview.subviews中存在而tableView.subviews;不存在的 view
for (int i = 0; i < arrs.count; i++) {
if ([arrs[i] isKindOfClass:[UIView class]]) {
UIView *temp = arrs[i];
if ([rightArr containsObject:temp]) {
} else {
[right1111Arr addObject:temp];
[temp removeFromSuperview];
}
}
}
// ⚠️留意点二
// 检查 cell 上是否现已包括元素,如果没有,则增加,这个一定要写在“处理rightView重复增加到scrollview的 bug”这段代码后边,否则这代码带存在的含义就没有,应该先看有没有重复增加,再看有没有缺失
if ([self.scrollview.subviews containsObject:cell.rightView]) {
// NSLog(@"=================");
} else {
[self.scrollview addSubview:cell.rightView];
}
return cell;
}
后记
不知道是我代码的原因,仍是 oc 的原因,如果不写留意一处的代码,会呈现元素重ios越狱复增加的问题,也初始化电脑的后果便是多个 label 叠加在了一个方位,导致字体很粗很重,一起,检查 UI 层级,你会奇特的发现,这些重复增加的字体识别元素都归于rightView
上的,也便是rightView
重复增加了;再细心研讨你又会奇特的发现,这些重复的rightView
,不归于任何一个 cell,你运用cell.subviews
发现,cell
的子 view
并没有这个rightView
(是否是相同元素经过比字体识别较指针地址能够得到),所以没有办法经过运用cel字体美化大师l.subviews
去除,采用了留意一的方法;
如果有知道的大手子能够告知一声,(8胜感激先啵一个)
一起,如果把留意一下面的代码的留意二下面的代替换,你会又双叒会呈现发现,部分cell上元素消失初始化英文了!!消失了,消失了,(的确自己水字体大小怎么调平比较低,专业写 bug的),也便是程序员需要什么学历rightView
以及其上的元素都消字体大全失了,有的 cell 上有元素,有的 cell 上没有元素,就很为难,到现在,这个问题还没有发现是为什么呈现的,如果有知道的大手子能够告知一初始化声,(8胜感激再啵一个),因为我最初是先写的⚠️留意点二,在这代码后边写的⚠️留意点一的代码,会呈现部分cell上元素的问题,可是将两者替换,呕程序员需要什么学历吼,bug 不见了,哈哈,其时考虑的是自己次序写错了,应该按照上方的次序来,一看果然如此,程序员要多思考啊。
入行现已一年了,2021.7.1–2022.7.6,370天,好像自己并没有怎样努力,一年以来,自己的水平也并没有质的飞跃,字体设计仅仅经字体转换器历了从入门到能干活,想要生长为独立自主的技术人员,道阻且长啊~,加油吧~
学习,然后进步