根据本教程,我有一个UITextView
里面的UITableViewCell
. UITableView
加载后,我想要调整它们UITextView
的UITableViewCell
高度。
但是我都是按照教程做的,UITextView
无法显示全部内容,部分UITextView
内容还需要滚动显示。
这是我的代码:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *contentTableIdentify = @"contentTableIdentify";
UITableViewCell *cell = nil;
//UILabel *label = nil;
UITextView *textView = nil;
cell = [self.tableView dequeueReusableCellWithIdentifier:contentTableIdentify];
if (cell == nil)
{
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:contentTableIdentify];
textView = [[UITextView alloc] initWithFrame:CGRectZero];
[textView setTextColor:[UIColor blackColor]];
[textView setFont:[UIFont fontWithName:@"Helvetica" size:12.0f]];
[textView setBackgroundColor:[UIColor clearColor]];
[textView setTag:1];
[textView setEditable:NO];
[[cell contentView] addSubview:textView];
}
NSString *text = [self.contentArray objectAtIndex:[indexPath row]];
CGSize constraint = CGSizeMake(320 - (10 * 2), 99999.0f);
CGSize size = [text sizeWithFont:[UIFont systemFontOfSize:12.0f] constrainedToSize:constraint lineBreakMode:NSLineBreakByWordWrapping];
if (!textView)
textView = (UITextView *)[cell viewWithTag:1];
[textView setText:text];
[textView setFrame:CGRectMake(10, 10, 320 - (10 * 2), MAX(size.height, 44.0f))];
return cell;
}
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
NSString *text = [self.contentArray objectAtIndex:[indexPath row]];
CGSize constraint = CGSizeMake(320 - (10 * 2), 20000.0f);
CGSize size = [text sizeWithFont:[UIFont systemFontOfSize:12] constrainedToSize:constraint lineBreakMode:NSLineBreakByWordWrapping];
CGFloat height = MAX(size.height, 44.0f);
return height + (10 * 2);
}