我有一个加载 3 个自定义单元格的表格 View 。 1个自定义单元格中有一个ImageView ,它似乎是点击任何单元格时表格 View 移动的罪魁祸首。
这是我尝试过的,但没有成功。
如果我使用静态值(即 return 180 ),它工作得很好,但除了表格 View 跳转之外的任何东西。
有人知道为什么吗?谢谢!
- (CGFloat)tableViewUITableView *)tableView heightForRowAtIndexPathNSIndexPath *)indexPath {
id model = self.Model[indexPath.row];
if ([model isKindOfClass:[FR self]]) {
ListTableViewCell *cellOne = [tableView dequeueReusableCellWithIdentifier"1Cell" forIndexPath:indexPath];
if (!cellOne) {
cellOne = [[ListTableViewCell alloc] init];
FR *fD = (FR *)model;
NSString *title = [NSString stringWithFormat"%@", fD.title];
NSString *dateString = [self timeSincePublished:fD.pubDate];
NSString *description = [self removeHTMLTags:fD.description];
NSString *link = [NSString stringWithFormat"%@", fD.link];
cellOne.labelHeadline.text = title;
cellOne.labelDescription.text = description;
cellOne.labelPublished.text = dateString;
}
// Make sure the cell's frame is updated
[cellOne setNeedsLayout];
[cellOne layoutIfNeeded];
CGFloat heightOne = [cellOne.contentView systemLayoutSizeFittingSize:UILayoutFittingCompressedSize].height;
return heightOne + 2;
} else if ([model isKindOfClass:[D self]]) {
// more code
}
Best Answer-推荐答案 strong>
据我所知,这是一个错误。避免在点击单元格后立即跳表的解决方法是添加:
[self.tableview reloadData];
在您的表格 View 中将消失
https://devforums.apple.com/message/1050163#1050163
https://devforums.apple.com/message/1042398#1042398
关于ios - TableView 高度在点击或弹回时更改,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/27083952/
|