求助 关于ios8 tableViewCell 自动化适应高度的问题

求助 关于ios8 tableViewCell 自动化适应高度的问题,第1张

你可以试试这样: UITableViewCell cell = (UITableViewCell )[selftableView dequeueReusableCellWithIdentifier:cellName]; 至于高度的话,你可以动态根据cell里面的内容的高度来设定cell的高度。 祝你愉快,哦

因为当tableView滚动时会不停的回调 - (CGFloat)tableView:(UITableView )tableView heightForRowAtIndexPath:(NSIndexPath )indexPath; 这个代理方法,当cell的高度需自适应内容时,就意味着每次回调这个方法时都要计算高度,而计算是要花时间了,在用户体验上的体现就是卡顿。为了避免重复且无意义的计算cell高度,缓存高度就显得尤为重要了。

缓存高度需要一个可变数组,每当回调 - (CGFloat)tableView:(UITableView )tableView heightForRowAtIndexPath:(NSIndexPath )indexPath; 这个方法时,我们先去这个数组里去取,如果有,就直接拿出来,如果没有,就计算高度,并且放进数组。

总的来说缓存cell高度还是比较简单的,只需在原来的基础上多加一个可变数组即可,逻辑也不复杂。不过,其对性能的优化还是不容小觑的,尤其是cell内容复杂且需高度自适应内容时。强烈建议人人get这项技术,即使是入门级开发者。

后面写了一篇更详细的:

iOS开发 | 简单实在的cell高度自适应内容及提前计算并缓存cell高度

1要在view中从上到下设置好各个约束

3自定义的header中

4如果视图中有hidden的布局文件,在不显示的时候 要remove,避免影响自动布局

在heightForRowAtIndexPath代理方法里

NSString inforStr = @“”; UIFont font = [UIFont systemFontOfSize:15]; CGSize size = CGSizeMake(300,2000); CGSize labelsize = [inforStr sizeWithFont:font constrainedToSize:size lineBreakMode:NSLineBreakByCharWrapping]; return labelsizeheight;

通委托设置表高度- (CGFloat)tableView:(UITableView )tableView heightForHeaderInSection:(NSInteger)section通委托返表视图返值UIView象

-

UITableView : UIScrollView

1创建一个UITableView对象

UITableView tableView = [[UITableView alloc]initWithFrame:[[UIScreen mainScreen] bounds] style:UITableViewStylePlain];

2separatorColor

分割线颜色     tableViewseparatorColor = [UIColor redColor];

3rowHeight

调整每个cell 点高度(默认 44)  tableViewrowHeight = 60;

4reloadData

刷新数据     [tableView reloadData];

5

两个必须实现的方法 

  1)控制一个section中cell 的多少

-(NSInteger)tableView:(UITableView )tableView numberOfRowsInSection:(NSInteger)section

2)控制cell中的内容

- (UITableViewCell )tableView:(UITableView )tableView cellForRowAtIndexPath:(NSIndexPath )indexPath

6选中cell时候使用的方法

- (void)tableView:(UITableView )tableView didSelectRowAtIndexPath:(NSIndexPath )indexPath

7取消选中时候用的方法 (不常用)

- (void)tableView:(UITableView )tableView didDeselectRowAtIndexPath:(NSIndexPath )indexPath

8控制分区个数

- (NSInteger)numberOfSectionsInTableView:(UITableView )tableView

9section上Header显示的内容

- (NSString )tableView:(UITableView )tableView titleForHeaderInSection:(NSInteger)section

10section上Footer显示的内容

- (NSString )tableView:(UITableView )tableView titleForFooterInSection:(NSInteger)section

11section顶部的高度

- (CGFloat)tableView:(UITableView )tableView heightForHeaderInSection:(NSInteger)section

12cell的高度

- (CGFloat)tableView:(UITableView )tableView heightForRowAtIndexPath:(NSIndexPath )indexPath

13 该方法返回值用于在表格右边建立一个浮动的索引

- (NSArray )sectionIndexTitlesForTableView:(UITableView )tableView;

cell相关:

1返回表格中指定indexPath对应的cell

- (UITableViewCell )cellForRowAtIndexPath:(NSIndexPath )indexPath;

2返回指定cell的indexPath

- (NSIndexPath )indexPathForCell:(UITableViewCell )cell;

3返回表格中指定点所在的indexPath

- (NSIndexPath )indexPathForRowAtPoint:(CGPoint)point;

4返回表格中指定区域内所有indexPath 组成的数组

- (NSArray )indexPathsForRowsInRect:(CGRect)rect;

5返回表格中所有可见区域内cell的数组

- (NSArray )visibleCells;

6返回表格中所有可见区域内cell对应indexPath所组成的数组

- (NSArray )indexPathsForVisibleRows;

7控制该表格滚动到指定indexPath对应的cell的顶端 中间 或者下方

- (void)scrollToRowAtIndexPath:(NSIndexPath )indexPath atScrollPosition:(UITableViewScrollPosition)scrollPosition animated:(BOOL)animated;

8控制该表格滚动到选中cell的顶端 中间 或者下方

-(void)scrollToNearestSelectedRowAtScrollPosition:(UITableViewScrollPosition)scrollPosition animated:(BOOL)animated;

处理单元格的选中

1@property(nonatomic) BOOL allowsSelection   控制该表格是否允许被选中

2@property(nonatomic) BOOL allowsMultipleSelection  控制该表格是否允许多选

3@property(nonatomic) BOOL allowsSelectionDuringEditing;  控制表格处于编辑状态时是否允许被选中

4@property(nonatomic) BOOL allowsMultipleSelectionDuringEditing   控制表格处于编辑状态时是否允许被多选

5获取选中cell对应的indexPath

- (NSIndexPath )indexPathForSelectedRow;

6获取所有被选中的cell对应的indexPath组成的数组

- (NSArray )indexPathsForSelectedRows

7控制该表格选中指定indexPath对应的表格行,最后一个参数控制是否滚动到被选中行的顶端 中间 和底部

- (void)selectRowAtIndexPath:(NSIndexPath )indexPath animated:(BOOL)animated scrollPosition:(UITableViewScrollPosition)scrollPosition;

8控制取消选中该表格中指定indexPath对应的表格行

- (void)deselectRowAtIndexPath:(NSIndexPath )indexPath animated:(BOOL)animated;

9当用户将要选中表格中的某行时触发方法

- (NSIndexPath )tableView:(UITableView )tableView willSelectRowAtIndexPath:(NSIndexPath )indexPath;

10当用户完成选中表格中的某行时触发方法

-(void)tableView:(UITableView )tableView didSelectRowAtIndexPath:(NSIndexPath)indexPath

11当用户将要取消选中表格中某行时触发

- (NSIndexPath )tableView:(UITableView )tableView willDeselectRowAtIndexPath:(NSIndexPath )indexPath

12当用户完成取消选中表格中某行时触发

- (void)tableView:(UITableView )tableView didDeselectRowAtIndexPath:(NSIndexPath)indexPath

关于对表格的编辑

1对表格控件执行多个连续的插入,删除和移动 *** 作之前调用这个方法开始更新

- (void)beginUpdates;

2对表格控件执行多个连续的插入,删除和移动 *** 作之后调用这个方法结束

- (void)endUpdates;

3在一个或多个indexPath处插入cell

- (void)insertRowsAtIndexPaths:(NSArray )indexPaths withRowAnimation:(UITableViewRowAnimation)animation;

4删除一个或多个indexPath处的cell

- (void)deleteRowsAtIndexPaths:(NSArray )indexPaths withRowAnimation:(UITableViewRowAnimation)animation;

5将制定indexPath处的cell移动到另个一indexPath处

- (void)moveRowAtIndexPath:(NSIndexPath )indexPath toIndexPath:(NSIndexPath)newIndexPath

6指定的indexSet所包含的一个或多个分区号对应的位置插入分区

- (void)insertSections:(NSIndexSet )sections withRowAnimation:(UITableViewRowAnimation)animation;

7删除指定indexSet所包含的一个或多个分区号所对应的分区

- (void)deleteSections:(NSIndexSet )sections withRowAnimation:(UITableViewRowAnimation)animation;

8将指定分区移动到另一个位置

- (void)moveSection:(NSInteger)section toSection:(NSInteger)newSection

@protocol UITableViewDataSource

9该方法返回值决定指定indexPath对应的cell是否可以编辑

- (BOOL)tableView:(UITableView )tableView canEditRowAtIndexPath:(NSIndexPath)indexPath;

10该方法返回值决定指定indexPath对应的cell是否可以移动

- (BOOL)tableView:(UITableView )tableView canMoveRowAtIndexPath:(NSIndexPath)indexPath;

11当用户对指定表格行编辑(包括插入和删除)时触发该方法

- (void)tableView:(UITableView )tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath)indexPath;

12该方法触发移动通常对数据进行处理(重要)

- (void)tableView:(UITableView )tableView moveRowAtIndexPath:(NSIndexPath)sourceIndexPath toIndexPath:(NSIndexPath )destinationIndexPath;

@protocol UITableViewDelegate

13开始/完成 编辑时调用的两个方法

- (void)tableView:(UITableView)tableView willBeginEditingRowAtIndexPath:(NSIndexPath )indexPath;

- (void)tableView:(UITableView)tableView didEndEditingRowAtIndexPath:(NSIndexPath)indexPath;

14该方法返回值决定了 indexPath处的cell 的编辑状态返回值为枚举类型 分别为 None Delete Insert

- (UITableViewCellEditingStyle)tableView:(UITableView )tableView editingStyleForRowAtIndexPath:(NSIndexPath )indexPath;

15该方法决定了 cell处于被编辑状态时是否应该缩进若未重写 所有cell处于编辑状态时都会缩进

- (BOOL)tableView:(UITableView )tableView shouldIndentWhileEditingRowAtIndexPath:(NSIndexPath )indexPath;

UITableViewCell : UIView

这里涉及到自定义UITableViewCell 以下为具体步骤以及需要注意到地方

1首先创建一个类继承UITableViewCell

2把自定义cell上到自定义视图全部设置为属性(注意:属性名一定不要和系统属性命重复 egimageView,textLable,detailTextLable)

3在cell的初始化方法中 对自定义视图对属性初始化,在初始化对时候可以不指定frame(注意,这里加载到视图上时 加载到contentView 上同时注意内存管理)

4在layoutSubviews方法中完成最后 *** 作 通常给出frame(注意,这个方法为系统自带方法,当一个cell显示到屏幕上之前,最后调用到一个方法, 所有cell到 *** 作 包括赋值,调整高度等 都已经完成一定不要忘记[super layoutSubviews];)

附加:当一个cell被选中的方法

- (void)setSelected:(BOOL)selected animated:(BOOL)animated

一些小 *** 作:

//将单元格的边框设置为圆角

celllayercornerRadius = 12;

celllayermasksToBounds = YES;

自定义的headerView里 重写 willMoveToSuperView

这时候因为子视图什么的 已经弄好了,所以你只要调用下系统给的根据autolayout计算高度的方法,重新设置下headerview的frame就行了

1 webView加载H5链接,设置它为tableView的 headerView,下方评论信息用Cell加载展示。

2 在webView的回调方法webViewDidFinishLoad中获取网页内容高度,设置为webView的高度,重新将webView赋给tableView的headerView。

Tip: 将一个View赋值给UITableView的tableHeaderView时,不需要手动设置高度,HeaderView会自动使用View的高度。

像上面这样,类似的方法很多,无论是JS获取,还是contentSize获取,最后结果都难以获取到准确高度,并非方法不行,而是:

以上就是关于求助 关于ios8 tableViewCell 自动化适应高度的问题全部的内容,包括:求助 关于ios8 tableViewCell 自动化适应高度的问题、iOS开发——UITableView优化之缓存cell高度、iOS中tableviewHeader的动态高度等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/10145298.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-05
下一篇 2023-05-05

发表评论

登录后才能评论

评论列表(0条)

保存