gpt4 book ai didi

ios - 如何强制 uitableview 调整单元格的大小(在停用高度限制后)?

转载 作者:技术小花猫 更新时间:2023-10-29 10:52:26 26 4
gpt4 key购买 nike

我正在尝试通过点击按钮放置一个可扩展的 UITableViewCell

我正在使用约束强制动态 UITextView 告诉 UITableViewCell 它的新高度。 (使用自动布局和 UITableViewAutomaticDimension)

这在没有按钮的情况下按预期工作:UITableViewCell 的高度取决于 UITextView 的高度。

UITextView 上有一个约束以最大化单元格的大小,当点击按钮(单元格被折叠)时,我想移除 UITextView 的高度约束>(即限制单元格高度)并相应地更新单元格。这是扩展方法:

-(void)extendCellWasTapped:(UITableViewCell*)senderCell{

MAFollowingPostTableViewCell *cell = (MAFollowingPostTableViewCell*)senderCell;

NSIndexPath *indexPath = [self.tableView indexPathForCell:cell];

if (![self.arrayExtendedTitlesAtIndexPaths containsObject:indexPath]) {
[self.arrayExtendedTitlesAtIndexPaths addObject:indexPath];
}

if ([self.tableView.indexPathsForVisibleRows containsObject:indexPath] ) {
dispatch_async(dispatch_get_main_queue(), ^(void){

[NSLayoutConstraint deactivateConstraints:@[cell.constraintTextViewHeight]];

// CGPoint offset = self.tableView.contentOffset;

[self.tableView beginUpdates];
[self.tableView reloadRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationNone];
[self.tableView endUpdates];

// I would like to minimize the animations as well here.. but thats another //problem
// [self.tableView.layer removeAllAnimations];
// [self.tableView setContentOffset:offset animated:NO];
// [self.tableView scrollToRowAtIndexPath:indexPath atScrollPosition:UITableViewScrollPositionBottom animated:YES];

});
}
}

如果我点击按钮然后滚动到类似的单元格,它已经展开。所以我在这里遗漏了一些东西。我已经尝试在停用约束后执行 [cell updateConstraints],但它不起作用。

更新

起初,由于某种原因该按钮没有显示。我注意到(使用相同的代码)如果我向下滚动然后向上滚动,按钮就会出现,如果我尝试扩展它,它就会起作用。

更新

这是我的 UIViewController :

http://www.gfycat.com/FairBossyAfricanporcupine

请注意,扩展按钮不存在,但是一旦我向下/向上滚动,它就会出现,并且一旦我点击扩展按钮,它就会扩展单元格。

更新

我注意到当计算 textSize 时(查看单元格是否可扩展),一开始,textView 比其最终状态更宽。我正在对 cellForRowAtIndexPath 执行此检查:

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

MAPostTableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:kCellIdentifier forIndexPath:indexPath];

cell.delegate = self;
cell.selectionStyle = UITableViewCellSelectionStyleNone;

MAPostFollowing *post = (MAPostFollowing*)[self.arrayPosts objectAtIndex:indexPath.section];

cell.textViewTitle.textContainer.lineBreakMode = NSLineBreakByWordWrapping;

NSString *title = [post.post title];

[cell.textViewTitle setText:title];

UIButton * buttonExtend = [cell buttonExtend];

if ([self.arrayExtendedTitlesAtIndexPaths containsObject:indexPath]) {
cell.constraintTextViewHeight.active = NO;

if (![buttonExtend isHidden]) {
buttonExtend.hidden = YES;
buttonExtend.userInteractionEnabled = NO;
}
}else{

cell.constraintTextViewHeight.active = YES;

NSLog(@"index %li", (long)indexPath.row);

BOOL b = ![self isTitleExtendable:title forTextView:cell.textViewTitle]; // Checks if the current text view is able to fit the title. If not, it will show the buttonExtend

buttonExtend.hidden = b;
buttonExtend.userInteractionEnabled = !b;

}
}
...

所以在第一次运行时(在滚动之前)[self isTitleExtendable:title forTextView:cell.textViewTitle];不返回所需的值,因为在计算 textSize 时 textView 的宽度不正确。

所以我相信有以下选择:- 在更改布局后强制 textViewTitle 刷新(从而正确计算可扩展 UI 状态)- 一旦 textViewTitle 更改宽度,重新检查可扩展 UI 状态

更新

在 prepareForReuse 方法中,textViewTitle 仍然有一个更宽的框架。在 layoutSubviews 方法上,它实际上有一个小框架。这里的挑战是它被更频繁地调用,它让我得到错误的案例(按钮在不应该显示的时候显示)

这是我正在试验的:

-(void)layoutSubviews{
[super layoutSubviews];

BOOL b = [self isTitleExtendable:self.textViewTitle.text forTextView:self.textViewTitle];

self.buttonExtend.hidden = !b;
self.buttonExtend.userInteractionEnabled = b;

if (!b) {
NSLog(@"Button hidden YES UserInteraction NO");
}else{
NSLog(@"Button hidden NO UserInteraction YES");
}

NSLog(@"textViewTitle layout %f",self.textViewTitle.frame.size.width);
}

最佳答案

要做这样的事情,你不应该依赖约束,但是在 tableView(_:heightForRowAtIndexPath:) 上你只需要根据上下文给出正确的高度。

按下按钮会触发更改,因此 tableView(_:heightForRowAtIndexPath:) 会为您扩展的单元格返回一个不同的值。

在执行此触发器之后,只需执行以下操作:

[self.tableView beginUpdates];
[self.tableView endUpdates];

它们之间没有任何东西,它将触发 UITableView 的“自然动画”并完全按照您的意愿行事

关于ios - 如何强制 uitableview 调整单元格的大小(在停用高度限制后)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35564178/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com