在开发中经常会遇到这样的需求:修改用户、商品等信息时由于内容过多需要折行显示。本篇文章解决了在一个动态的UITabelView中,cell会根据每行TextView输入的内容实时改变cell和TabelView的高度。
这是我想要的效果:
实现上面效果的基本原理:
- 在 cell 中设置好 textView 的 Autolayout,让 cell 可以根据内容自适应大小
- textView 中输入内容,根据内容更新 textView 的高度
- 调用 tableView 的 beginUpdates 和 endUpdates,重新计算 cell 的高度
- 将 textView 更新后的数据保存,以免 tableView 滚动超过一屏再滚回来 textView 中的数据又不刷新成原来的数据了。
一、准备工作
创建项目,自定义创建UITabelViewCell勾选XIB。(一笔带过)
二、为cell中的textView添加约束
为了查看方便我给textView添加了灰色背景
Autolayout
如何为控件添加约束不了解的同学晚上加加点好好学,这里不做过多介绍。
⚠️注意:设置 UITextView 的 scrollEnable 为 NO。这一点很关键,如果不设置为 NO,当UITextView 输入内容超出我们 约束的 frame 后,重新设置 textView 的高度会失效,并出现滚动条。
三、实际操作
1、让UITextView遵循代理UITextViewDelegate
2、在 TextViewCell.m
中实现- (void)textViewDidChange:(UITextView *)textView
,每次 textView 内容改变的时候,就重新计算一次 textView 的大小,并让 table view 更新高度。
//每次 textView 内容改变的时候,就重新计算一次 textView 的大小,并让 tableView 更新高度。
- (void)textViewDidChange:(UITextView *)textView{
CGRect bounds = textView.bounds;
// 计算 text view 的高度
CGSize maxSize = CGSizeMake(bounds.size.width, CGFLOAT_MAX);
CGSize newSize = [textView sizeThatFits:maxSize];
bounds.size = newSize;
textView.bounds = bounds;
// 让 table view 重新计算高度
UITableView *tableView = [self tableView];
[tableView beginUpdates];
[tableView endUpdates];
}
- (UITableView *)tableView{
UIView *tableView = self.superview;
while (![tableView isKindOfClass:[UITableView class]] && tableView) {
tableView = tableView.superview;
}
return (UITableView *)tableView;
}
到目前为止已经实现了 textView 改变内容自动更新 cell 高度的功能,本文章没有涉及到计算 cell 高度的代码,因为计算 cell 高度的工作全部交给 iOS 8 的 autolayout 自动计算了,这让我们少写了许多令人痛苦的代码。
四、滑动UITabelView导致数据的显示问题
为了防止 tableView 过长,导致滚动后重新加载 cell,会让 textView 中的内容还原的问题,我们应该在更新了 textView 的内容之后保存数据。
(如果是在编辑状态下,还需要考虑取消编辑后的显示之前的数据。 可以保存一个原始数据的副本,如果用户取消编辑,就设置 data 为原始数据的副本。本功能就不做介绍了,有兴趣的同学可以自己敲一下,添加一个取消编辑按钮事件,然后两三行代码搞定)
1、为了在 textView 内容更新后能让 TableViewController 中的 data 更新,需要为 cell 添加一个通知,在 textView 更新后调用,TableViewController 中收到 通知信息后更新 data。这里我用的是代理Delegate
。
修改过后的TextViewCell.h
#import <UIKit/UIKit.h>
@class TextViewCell;
@protocol TextViewCellDelegate <NSObject>
- (void)textViewCell:(TextViewCell *)cell didChangeText:(NSString *)text;
@end
@interface TextViewCell : UITableViewCell
@property (weak, nonatomic) id<TextViewCellDelegate> delegate;
@property (nonatomic, strong) NSIndexPath *indexPath;
- (void)setCellTitle:(NSString *)title cellContentInfo:(NSString *)info;
@property (weak, nonatomic) IBOutlet UITextView *detailTitleTV;
@end
2、在 TextView.m
的- (void)textViewDidChange:(UITextView *)textView
中添加 delegate 的调用
- (void)textViewDidChange:(UITextView *)textView{
[self.delegate textViewCell:self didChangeText:textView.text];
// 计算 text view 的高度
...
// 让 table view 重新计算高度
...
}
3、最后在 TableViewController.m
的最后实现 TextViewCellDelegate
的方法,更新data
#pragma mark - TextViewCellDelegate
- (void)textViewCell:(TextViewCellCell *)cell didChangeText:(NSString *)text
{
NSIndexPath *indexPath = [self.tableView indexPathForCell:cell];
NSMutableArray *data = [self.detailTitleArr mutableCopy];
data[indexPath.row] = text;
self.detailTitleArr = [data copy];
}
最终效果
其实网上这样封装好的第三方有很多,但是一个简单的功能就去集成那些臃肿的第三方甚是不妥,不仅耗费时间还增加代码成本,如果不符合自己要求的还得做修改。所以也提醒大家不能为了快而集成一个冗余臃肿的第三方,为以后的开发和维护增加成本!
打完手工!🍺🍺
网友评论