总结了几种设置UITableView的cell动态高度的方法

 我来答
盆笙轻1356
2013-11-04 · 超过61用户采纳过TA的回答
知道答主
回答量:135
采纳率:85%
帮助的人:57.3万
展开全部
一:改变它的加载顺序,或者说白了就是计算好cell高度后,再次让它加载heightForRowAtIndexPath方法; 二:直接在heightForRowAtIndexPath计算,做判断,直接返回对应的高度。 以下是第一种方法的实例: UITableView设置单元格的高度的方法 - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {return64;} // Somewhere in your header: NSIndexPath *selectedCellIndexPath; // And in the implementation file:-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { selectedCellIndexPath = indexPath;//Forces the table view to call heightForRowAtIndexPath[tableViewreloadRowsAtIndexPaths:[NSArrayarrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationNone];}-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {//Note: Some operations like calling [tableView cellForRowAtIndexPath:indexPath]//will call heightForRow and thus create a stack overflow if(selectedCellIndexPath !=nil && [selectedCellIndexPath compare:indexPath] == NSOrderedSame){return128;}else{return64;}}reloadRowsAtIndexPaths方法将重新调用heightForRowAtIndexPath使单元格改变高度。 reloadRowsAtIndexPaths是在3.0.存储NSIndexPath的原因是因为不可能在堆栈不溢出的情况下在
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式