3

在 ios 应用程序中,我有一个 UITableView。在该cellForRowAtIndexPath方法中,我需要使用其 NIB 名称返回一个自定义单元格。为此,我使用loadNibNamed. (我将在'willDisplayCellforRowAtIndexPath'中加载后填充单元格中的数据)

MyItemCell 是一个包含 2 个 UIImageView 和一个 UIButton 的 XIB 文件 (MyItemCell.xib)(每个项目都有一个标签)

这是我的代码:

在我的视图控制器中

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    return [ViewHelper loadCustomCellWithNibName:@"MyItemCell" owner:self];
}

以及从 NIB 加载自定义单元格的方法

+ (UITableViewCell *) loadCustomCellFromNib:(NSString *)nibName owner:(id)owner
{
    UITableViewCell *cell = nil;
    NSArray *nibObjects = [[NSBundle mainBundle] loadNibNamed:nibName owner:owner options:nil];
    if([nibObjects count] > 0 )
    {
        cell = [nibObjects objectAtIndex:0];
    }
    else
    {
        NSLog(@"Failed to load %@ XIB file!", nibName);
    }
    return cell;
}

在所有测试中一切正常。但是,我收到了一些无法重现的用户崩溃。

这是崩溃:

NSInternalInconsistencyException

Could not load NIB in bundle: 'NSBundle </var/mobile/Applications/7A24cE79-131F-523F-4C00-23B523ARG123/MyApp.app> (loaded)' with name 'MyItemCell'

堆栈跟踪:

0 CoreFoundation                        0x39b432a3 __exceptionPreprocess + 163 + 162

1 libobjc.A.dylib                       0x33a3297f objc_exception_throw + 31 + 30

2 CoreFoundation                        0x39b431c5 -[NSException initWithCoder:] + 1

3 UIKit                                 0x32e12491 -[UINib instantiateWithOwner:options:] + 1637 + 1636

4 UIKit                                 0x32e1a1d7 -[NSBundle(UINSBundleAdditions) loadNibNamed:owner:options:] + 139 + 138

5 MyApp                                 0x00047ded +[ViewHelper loadCustomCellFromNib:owner:] (ViewHelper.m:349)

6 MyApp                                 0x00034003 -[BuildViewController tableView:cellForRowAtIndexPath:] (BuildViewController.m:2432)

7 UIKit                                 0x32cc0545 -[UITableView(UITableViewInternal) _createPreparedCellForGlobalRow:withIndexPath:] + 413 + 412

8 UIKit                                 0x32ca530b -[UITableView(_UITableViewPrivate) _updateVisibleCellsNow:] + 1311 + 1310

9 UIKit                                 0x32cbc7c7 -[UITableView layoutSubviews] + 207 + 206

10 UIKit                                0x32c78803 -[UIView(CALayerDelegate) layoutSublayersOfLayer:] + 259 + 258 

问题是我无法重现此崩溃。

关于可能导致崩溃的任何想法?或者有什么解决方案可以避免这种错误?

非常感谢您的帮助

编辑:

只是为了澄清更多,这在我正在做的任何测试中都可以正常工作。此崩溃仅针对 1 个用户出现 1 次,因此问题不在于代码。我只是在寻找在特定情况下可能导致此崩溃的原因。谢谢

4

2 回答 2

12

要从 NIB 文件创建自定义单元格,请尝试此操作

- (void)viewDidLoad
{
    [tableView registerNib:[UINib nibWithNibName:CellIdentifier bundle:nil] forCellReuseIdentifier:CellIdentifier];
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

    MyCell *cell = (MyCell*)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    ......
    return cell;
}

CellIdentifier 是 NIB 文件的名称,也用作单元标识符。

于 2013-01-25T11:32:04.090 回答
1

请试试这个...它不会给任何问题...

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
   static NSString *CellIdentifier = @"albumListCell";
   albumListCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
   if (cell == nil)
   {
         cell = (albumListCell *) [[[NSBundle mainBundle] loadNibNamed:@"albumListCell" owner:self options:nil] lastObject];
   }
   return cell;
}

使用 nib 文件创建 tableViewCell 是不可能的。所以创建一个简单的 View 控制器,然后将 UIViewController 更改为 UITableViewCell ...

于 2013-01-25T11:19:08.787 回答