在静态表视图中动态调整文本视图和表视图单元格的大小

时间:2014-04-22 12:57:56

标签: ios objective-c uitableview uitextview

我有一个静态表视图,我用作我的应用程序的大量数据输入。其中一个单元格中有一个UITextView,它需要在用户输入时动态增长和缩小,以及随着逻辑上的增长/缩小单元格。我在这上面阅读了很多帖子,但我想我会被抛出,因为我使用的是STATIC表视图。

这是我的调整大小尝试(几乎完全失败):

- (void)textViewDidChange:(UITextView *)textView
{
    self.numberOfLines = (textView.contentSize.height / textView.font.lineHeight) - 1;

    float height = 44.0;
    height += (textView.font.lineHeight * (self.numberOfLines - 1));

    CGRect textViewFrame = [textView frame];
    textViewFrame.size.height = height - 10.0; //The 10 value is to retrieve the same height padding I inputed earlier when I initialized the UITextView
    [textView setFrame:textViewFrame];

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

    [self.messageTextView setContentInset:UIEdgeInsetsZero];
}

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    float height = 44.0;
    if (self.messageTextView) {
        height += (self.messageTextView.font.lineHeight * (self.numberOfLines - 1));
    }
    return height;
}

我会接受任何提示!感谢。

3 个答案:

答案 0 :(得分:0)

您不必通过此代码执行任何操作: - 有一个新函数可以替换sizeWithFont,它是boundingRectWithSize。

将以下函数添加到我的项目中,该函数使用iOS7上的新函数和iOS下的旧函数。它与sizeWithFont的语法基本相同:

   -(CGSize)text:(NSString*)text sizeWithFont:(UIFont*)font constrainedToSize:(CGSize)size{
        if(IOS_NEWER_OR_EQUAL_TO_7){
            NSDictionary *attributesDictionary = [NSDictionary dictionaryWithObjectsAndKeys:
                                              font, NSFontAttributeName,
                                              nil];

            CGRect frame = [text boundingRectWithSize:size
                                              options:(NSStringDrawingUsesLineFragmentOrigin | NSStringDrawingUsesFontLeading)
                                           attributes:attributesDictionary
                                              context:nil];

            return frame.size;
        }else{
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
            return [text sizeWithFont:font constrainedToSize:size];
#pragma clang diagnostic pop
        }
    }

您可以在项目的prefix.pch文件中添加IOS_NEWER_OR_EQUAL_TO_7作为:

#define IOS_NEWER_OR_EQUAL_TO_7 ( [ [ [ UIDevice currentDevice ] systemVersion ] floatValue ] >= 7.0 )

我从这个链接中提到: -

UITableViewCell with UITextView height in iOS 7?

答案 1 :(得分:0)

请检查我的答案。

Calculate UITableViewCell height to fit string

此处标签用于计算单元格的高度。

完成文本字段- (void)textViewDidEndEditing:(UITextView *)textView中的文本编辑后,调用tableview reloadData函数,根据textview中输入的文本更新单元格

答案 2 :(得分:0)

您需要手动计算textView的新尺寸,并手动调用tableView的更新。

static CGFloat cellHeight = 85;//from story board height to
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
    UITableViewCell *cell = [super tableView:tableView cellForRowAtIndexPath:indexPath];
    if (indexPath.row == 0) {
        return cellHeight + [self appendTextViewNewHeight];
    }
    return cell.bounds.size.height;
}

-(CGFloat) appendTextViewNewHeight {
    return _appendHeightForTextView;
}

static CGFloat textViewHeightStartHeight = 33;//from storiboard height
- (void)textViewDidChange:(UITextView *)textView;
{
    CGFloat fixedWidth = textView.frame.size.width;
    CGSize newSize = [textView sizeThatFits:CGSizeMake(fixedWidth, MAXFLOAT)];
    CGRect newFrame = textView.frame;
    newFrame.size = CGSizeMake(fmaxf(newSize.width, fixedWidth), newSize.height);
    if (newFrame.size.height >= textViewHeightStartHeight) {
        CGFloat newAppend = newFrame.size.height - textViewHeightStartHeight;
        if (newAppend != self.appendHeightForTextView) {
            self.appendHeightForTextView = newAppend;
            [self.tableView beginUpdates];
            [self.tableView endUpdates];
        }
    }
}

此外,您还需要在代码中设置故事板上的委托。 在viedDidLoad中你需要做下一件事:

self.appendHeightForTextView = 0;   

最后在故事板中为您的单元格设置约束。不要设置textView的底部约束。只设置右,左和上。