- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
总结
鉴于我们并不总是知道单元格的框架或其内容 View 将是什么(由于编辑、旋转、附属 View 等),计算高度的最佳方法是什么在 tableView:heightForRowAtIndexPath:
中,当单元格包含可变高度的文本字段或标签时?
我的一个 UITableViewController
包含以下演示文稿:带有 UITextView 的 UITableViewCell。
UITextView 应与 UITableViewCell 的宽度和高度相同。
我创建了 UITableViewCell 子类,然后用 UITextView 初始化它(UITextView 是我的 UITableViewController 的私有(private)字段)
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
static NSString *CellIdentifier = @"TextViewCell";
UITableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[BTExpandableTextViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier textView:_notesTextView] autorelease];
}
return cell;
}
我在我的 UITableViewCell 子类中实现了以下方法:
- (void)layoutSubviews{
[super layoutSubviews];
CGFloat height = [textView.text sizeWithFont:textView.font constrainedToSize:CGSizeMake(textView.frame.size.width, MAXFLOAT)].height + textView.font.lineHeight;
textView.frame = CGRectMake(0, 0, self.contentView.frame.size.width, (height < textView.font.lineHeight * 4) ? textView.font.lineHeight * 4 : height);
[self.contentView addSubview:textView];
}
当然,我实现了以下 UITableViewDataSource 方法(看!我正在使用 self.view.frame.size.width(但实际上我需要 UITableViewCell contentView 框架宽度):
- (CGFloat)tableView:(UITableView*)tableView heightForRowAtIndexPath:(NSIndexPath*)indexPath{
CGFloat height = [_notesTextView.text sizeWithFont:_notesTextView.font
constrainedToSize:CGSizeMake(self.view.frame.size.width, MAXFLOAT)].height;
CGFloat groupedCellCap = 20.0;
height += groupedCellCap;
if(height < [BTExpandableTextViewCell minimumTextViewHeightWithFont:_notesTextView.font]){
height = [BTExpandableTextViewCell minimumTextViewHeightWithFont:_notesTextView.font];
}
return height;
}
我还实现了下面的方法(这不是很重要,但我还是贴出来,只是为了解释单元格的高度是动态的,它会在 UITextView 中更改文本后收缩或扩展)
- (void)textViewDidChange:(UITextView *)textView{
CGFloat height = [_notesTextView.text sizeWithFont:_notesTextView.font
constrainedToSize:CGSizeMake(_notesTextView.frame.size.width, MAXFLOAT)].height;
if(height > _notesTextView.frame.size.height){
[self.tableView beginUpdates];
[self.tableView endUpdates];
}
}
现在,我的问题是:加载 View 后,UITableViewController 按以下顺序调用方法:(为了简化,我将删除一些,如 titleForHeaderInSection 等)
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
- (CGFloat)tableView:(UITableView*)tableView heightForRowAtIndexPath:(NSIndexPath*)indexPath{
只有那时
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
看!我应该在 cellForRowAtIndexPath 之前返回正确的 UITableViewCell 高度!这意味着:我不知道 UITableViewCell contentView 框架。而且我无法以编程方式获取它。
这个宽度可以是以下之一:
并且不要忘记,由于 UITableViewCell accessoryType 或 UITableView 编辑状态,contentView 框架可能会更小。 (例如,如果我们有 UITableViewCell 和任何高度的多行 UILabel 在任何编辑状态和任何 accessoryView)
所以这个问题是根本性的:我只是无法获得用于约束的单元格 contentView 框架宽度,因为我应该在单元格布局 contentView 之前返回此高度。 (顺便说一句,这是非常合乎逻辑的)但是这个 contentView 框架真的很重要。
当然有时我可以准确地知道这个宽度并“硬编码”它(比如:UITableViewCellAccessoryDisclosureIndicator 的宽度是20px,tableView 不能处于编辑状态,那么我可以写self.view.frame.size.width - 20 就完成了)!或者有时 contentView 等于 UITableViewController 的 View 框架!
有时我在 -tableView:heightForRowAtIndexPath: 方法中使用 self.view.frame.width ..(就像现在一样,它工作得很好,但由于分组的 UITableView 而不是完美的,应该减去一些常量值,并且它们2 个设备 * 2 个方向不同)
有时我在 UITableViewCell 中有一些#defined 常量(如果我确切地知道宽度)...
有时我会使用一些虚拟的预分配 UITableViewCell(这很愚蠢,但有时非常优雅且易于使用)...
但我不喜欢这些。
最好的决定是什么?也许我应该创建一些辅助类,它将使用这些参数进行初始化:附件 View 、设备方向、设备类型、 TableView 编辑状态、 TableView 样式(普通、分组)、 Controller View 框架和其他一些,将包含一些常量(如分组 tableView 偏移量等)并使用它来查找预期的 UITableViewCell contentView 宽度? ;)
谢谢
最佳答案
TableView 使用 tableView:heightForRowAtIndexPath:
方法在创建任何 UITableViewCell
单元格之前确定其 contentSize。如果您停下来仔细想想,这是有道理的,因为您对 UIScrollView
做的第一件事就是设置它的 contentSize。我以前遇到过类似的问题,我发现最好有一个辅助函数,它可以将内容放入 UITableViewCell 并预测该 UITableViewCell
的高度。所以我想你会想要创建某种数据结构,将文本存储在每个 UITableViewCell
中,一个以 NSIndexPaths 作为键、文本作为值的 NSDictionary 会做得很好。这样,您无需引用 UITableViewCell
即可找到所需文本的高度。
关于ios - 在没有 contentView 框架的情况下计算 UITableViewCell 高度的最佳方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11103238/
我想了解 Ruby 方法 methods() 是如何工作的。 我尝试使用“ruby 方法”在 Google 上搜索,但这不是我需要的。 我也看过 ruby-doc.org,但我没有找到这种方法。
Test 方法 对指定的字符串执行一个正则表达式搜索,并返回一个 Boolean 值指示是否找到匹配的模式。 object.Test(string) 参数 object 必选项。总是一个
Replace 方法 替换在正则表达式查找中找到的文本。 object.Replace(string1, string2) 参数 object 必选项。总是一个 RegExp 对象的名称。
Raise 方法 生成运行时错误 object.Raise(number, source, description, helpfile, helpcontext) 参数 object 应为
Execute 方法 对指定的字符串执行正则表达式搜索。 object.Execute(string) 参数 object 必选项。总是一个 RegExp 对象的名称。 string
Clear 方法 清除 Err 对象的所有属性设置。 object.Clear object 应为 Err 对象的名称。 说明 在错误处理后,使用 Clear 显式地清除 Err 对象。此
CopyFile 方法 将一个或多个文件从某位置复制到另一位置。 object.CopyFile source, destination[, overwrite] 参数 object 必选
Copy 方法 将指定的文件或文件夹从某位置复制到另一位置。 object.Copy destination[, overwrite] 参数 object 必选项。应为 File 或 F
Close 方法 关闭打开的 TextStream 文件。 object.Close object 应为 TextStream 对象的名称。 说明 下面例子举例说明如何使用 Close 方
BuildPath 方法 向现有路径后添加名称。 object.BuildPath(path, name) 参数 object 必选项。应为 FileSystemObject 对象的名称
GetFolder 方法 返回与指定的路径中某文件夹相应的 Folder 对象。 object.GetFolder(folderspec) 参数 object 必选项。应为 FileSy
GetFileName 方法 返回指定路径(不是指定驱动器路径部分)的最后一个文件或文件夹。 object.GetFileName(pathspec) 参数 object 必选项。应为
GetFile 方法 返回与指定路径中某文件相应的 File 对象。 object.GetFile(filespec) 参数 object 必选项。应为 FileSystemObject
GetExtensionName 方法 返回字符串,该字符串包含路径最后一个组成部分的扩展名。 object.GetExtensionName(path) 参数 object 必选项。应
GetDriveName 方法 返回包含指定路径中驱动器名的字符串。 object.GetDriveName(path) 参数 object 必选项。应为 FileSystemObjec
GetDrive 方法 返回与指定的路径中驱动器相对应的 Drive 对象。 object.GetDrive drivespec 参数 object 必选项。应为 FileSystemO
GetBaseName 方法 返回字符串,其中包含文件的基本名 (不带扩展名), 或者提供的路径说明中的文件夹。 object.GetBaseName(path) 参数 object 必
GetAbsolutePathName 方法 从提供的指定路径中返回完整且含义明确的路径。 object.GetAbsolutePathName(pathspec) 参数 object
FolderExists 方法 如果指定的文件夹存在,则返回 True;否则返回 False。 object.FolderExists(folderspec) 参数 object 必选项
FileExists 方法 如果指定的文件存在返回 True;否则返回 False。 object.FileExists(filespec) 参数 object 必选项。应为 FileS
我是一名优秀的程序员,十分优秀!