来自自定义.XIB文件的UITableViewCell不会创建出口

时间:2012-03-29 07:53:14

标签: iphone objective-c ios xcode uitableview

更新2:


长话短说,我对此很愚蠢(而且,在我的辩护中,没有受过适当的教育)。它现在有效。我的问题已经脱离了原来的主题一点点,但那是因为我不理解我的应用程序中发生了什么。我想用最后一个(也是小的)查询来关闭这个问题:

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

有办法做到这一点吗?

更新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文件中包含的自定义UITableView以编程方式生成UITableViewCell。我的DirectionsViewController类只是一个带有编程单元格的UITableView。点击其中一个单元格需要提供DetailedDirectionsViewController表(以模态方式),其单元格设计位于DetailedDirectionsViewCell.xib文件中。问题是,我无法在任何地方为nib文件中的IBOutlet创建UITableViewCell。拖动文件的所有者图标/插座不提供任何创建。经过5个小时的挣扎,这意味着我无法展示我的详细视图。

第二个问题涉及向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 - 这是自定义单元格。我无法设置其文件所有者。


4 个答案:

答案 0 :(得分:11)

确定..您没有从文件所有者创建IBOutlet连接。看一下截图。您可以从CustomCell的视图(使用红色箭头)创建IBOutlet

照看您的代码,请按照以下步骤操作。

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

enter image description here

2)现在在CustomCell.xib选择CustomCell的视图而不是文件的所有者(文件所有者应仅从NSObject继承)转到Identity Inspector(标记为使用Red Ellipse)并选择相应的Customcell类(用红色矩形标记)。

3)右键单击customcell的视图并连接标签。并保存..

enter image description here

4)在您的DirectionsViewController.m中,您拥有此UITableView的委托方法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方法中返回值时被调用多次。每次cell.label为空,您将通过调用此行将数据添加到标签。因此,无需像每次在第79-90行之间那样创建标签。 http://pastebin.com/Vd4PKjTu

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

创建自定义单元格意味着您创建UI(即.xib),界面&自己为UITableViewCell实现(.h,.m文件)并在您的班级(即DirectionsViewController.mcellForRowAtIndexPath委托方法中采用它们。

答案 1 :(得分:2)

要加载自定义单元格,我已使用此代码(测试它并且它正在运行)

static NSString *CustomCellIdentifier = @"CustomCommentIdentifier";
detailedDirectionsViewCell *cell = (DetailedDirectionsViewCell *)[tableView dequeueReusableCellWithIdentifier:CustomCellIdentifier];
if (cell == nil) {
    NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"DetailedDirectionsViewCell" owner:self options:nil];
    for (id oneObject in nib)
        {
             if ([oneObject isKindOfClass:[DetailedDirectionsViewCell class]])
             {
                  cell = (DetailedDirectionsViewCell *)oneObject;
             }
        }
}

并确保您更改了单元格类nib文件,如下所示:

  1. 点击文件所有者,将其类型更改为NSObject(这是为了在连接奥特莱斯时不要混淆。
  2. 删除nib文件中的所有视图,然后拖放UITableViewCell组件。
  3. 将组件的超类更改为Cell类,在您的情况下,将单元格从UITableViewCell更改为DetailedDirectionsViewCell
  4. 连接插座。
  5. 这应该有用,如果您有任何疑问,请与我联系。

答案 2 :(得分:0)

要回答更新2中的最后一个问题,您是否考虑使用文本字段而不是标签?您应该能够禁用编辑,以便用户无法更改显示的内容。如果您需要它作为标签,则在标签的“属性”检查器中,“标签”下拉列表下方有一个名为“行”的属性,您可以调整该属性。我不确定如何以程序方式访问该属性,但快速的Google搜索应该可以帮助您。

答案 3 :(得分:0)

就我而言,我对一个细胞类有两种不同的观点。当我将插座连接到.h文件时,它们只连接到第一个视图表示,而不是第二个。 因此,为了确保您的网点真正连接,请转到Xcode me菜单并打开View - >实用程序 - >显示FileConnection检查器,然后确保视图的插座真正连接。

enter image description here