gpt4 book ai didi

iphone - 来自自定义 .XIB 文件的 UITableViewCell 不会创建导出

转载 作者:可可西里 更新时间:2023-11-01 06:19:52 25 4
gpt4 key购买 nike

更新 2:


长话短说,我对此很愚蠢(并且,在我的辩护中,没有受到适当的教育)。现在可以了。我的问题有点偏离了最初的主题,但那是因为我不了解我的申请中发生了什么。我想用最后一个(也是很小的)查询来结束这个问题:

我的 customCell.xib 中有两个标签。我希望其中之一 (cell.label2) 有时包含较长的文本段(2-3 行)。我知道使它完全适合的一种方法是设置 autoshrink 属性,但它会缩小到文本,因此它可以放在一行中。我想保留原始文本大小并扩大单元格的高度,使文本跨越多行而不是缩小它。

有办法吗?

更新 1:


我根据下面的回复尝试了一些事情,但他们一无所获。我越来越相信我在做一些根本性的错误,而你们只是想不出来,因为它太基础了。所以让我们再试一次。我将稍微更改一下名称,以便更容易记住。

问题似乎在于我无法为我的 customCell 创建任何 IBOutletsIBActions。现在我有 3 个文件可以处理这个 (DetailedDirectionViewCell.{h,m,xib},但是 Interface Builder 不允许我从我的 UITableViewCell 对象中创建属性/导出/引用- 任何地方。

我没有在此处复制代码,而是提供了一个包含指向我的代码的链接的 PasteBin 条目。和以前一样,我删除了不太有趣的方法。如果愿意,请看一下。 http://pastebin.com/p4eADhKQ

我也有 customCell.{h,m},但这些只是继承自 UITableViewCell 的新 Objective C 类文件。 customCell.xib 只是一个带有两个标签的单元格。


所以我确实有几个问题。

首先,使用包含在它自己的 .XIB 文件中的自定义 UITableViewCell,以编程方式生成 UITableView。我的 DirectionsViewController 类只是一个带有编程单元的 UITableView。点击其中一个单元格需要呈现 DetailedDirectionsViewController 表(以模式方式),其单元格设计位于 DetailedDirectionsViewCell.xib 文件中。问题是,我无法从 nib 文件的任何地方为 UITableViewCell 创建一个 IBOutlet。拖动文件的所有者图标/导出不提供创建任何东西。经过 5 小时的努力,这意味着我无法展示我的详细 View 。

第二个问题涉及到向 DirectionsViewController 添加导航栏,但我们暂时不考虑它。

以下是一些您可能会觉得有用的方法:

//inside DirectionsViewController
- (void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)
{
DetailedDirectionsViewController *vc = [[DetailedDirectionsViewController alloc] initWithStyle:UITableViewStyleGrouped];
vc.instruction = [turnList objectAtIndexPath:indexPath.row];
[self.tabBarController presentModalViewController:vc animated:YES];
}

//inside DetailedDirectionsViewController
- (UITableViewCell *) tableView:(UITableView *) cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"directionsCell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil)
{
[[NSBundle mainBundle] initWIthNibNamed:@"DetailedDirectionsViewCell" owner:nil options:nil];
cell = self.tableViewCell;
self.tableViewCell = nil;
}

//here I configure the custom cell
return cell;
}

我认为其余的方法没有意义,因为它们要么按预期工作,要么几乎是默认方法。

总结:

DirectionsViewController - 本质上是一个带有自定义单元格的 UITableViewController。没有 .xib 文件DetailedDirectionsViewController - 有关 DirectionsViewController 条目的详细信息。此处的单元格应来自 .XIB 文件,但已损坏。DetailedDirectionsViewCell - 这是自定义单元格。我无法设置其文件所有者。


最佳答案

好的.. 您不会从文件所有者创建IBOutlet 连接。看一下屏幕截图。您从 CustomCell 的 View (使用红色箭头)创建 IBOutlet

照看您的代码只需按照以下步骤操作即可。

1) 转到 CustomCell.h 文件。正如您所说,customCell.xib 有两个 UILabel(假设 label1 和 label2),您必须在 中声明属性并创建导出>CustomCell.h 文件和.m 文件中合成并释放它。请引用我的这个代码屏幕。

enter image description here

2) 现在在 CustomCell.xib 中,选择 CustomCell 的 View 而不是 File's Owner(File's Owner 应该继承自 NSObject only ) 转到 Identity Inspector(用红色椭圆标记)并选择相应的 Customcell 类(用红色矩形标记)。

3) 右键单击​​自定义单元格的 View 并连接到标签。并保存..

enter image description here

4) 在您的 DirectionsViewController.m 中,您拥有此 UITableView 的委托(delegate)方法 cellForRowAtIndexPath。像这样改变它:

 - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CustomCellIdentifier = @"CustomCell";
EditProjectCustomCell *cell = (EditProjectCustomCell *)[tableView dequeueReusableCellWithIdentifier: CustomCellIdentifier]; // typecast to customcell

[cell setSelectionStyle:UITableViewCellSelectionStyleBlue];

if (cell == nil)
{
NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"EditProjectCustomCell" owner:self options:nil];

for (id oneObject in nib)
if ([oneObject isKindOfClass:[EditProjectCustomCell class]])

cell = (EditProjectCustomCell *)oneObject;

[cell setSelectionStyle:UITableViewCellSelectionStyleBlue];

}

cell.label1.text=[someArray1 ObjectAtIndexPath: indexPath.row];
cell.label2.text=[someArray2 ObjectAtIndexPath: indexPath.row];

return cell;

}

当您在 numberOfRowsInSection DataSource 方法中返回值时,此委托(delegate)方法将被调用多次。每次 cell.label 都为空,您将通过调用此行将数据添加到标签。因此无需像您在此处的第 79-90 行之间那样每次都创建标签。 http://pastebin.com/Vd4PKjTu

 cell.label1.text=[someArray ObjectAtIndexPath: indexPath.row];

创建自定义单元格意味着您自己为 UITableViewCell 创建 UI(即 .xib)、接口(interface)和实现(.h、.m 文件),并在您的类中采用它们(即 DirectionsViewController .m) cellForRowAtIndexPath 委托(delegate)方法。

关于iphone - 来自自定义 .XIB 文件的 UITableViewCell 不会创建导出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9921241/

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