无法使用标识符标记出列单元格

时间:2013-11-28 12:31:19

标签: objective-c ios7

当按下按钮加载下面发布的课程时,我收到错误。

代码应该加载滑出菜单。这是导致我的问题的一条线。我是iOS / obj-c的新手。我不确定为什么,但是这行代码的方法是为_menuItems数组中的每个条目循环? NSLog输出数组的每个项目,但然后它运行另一次并抛出此错误?这就是我认为至少发生的事情。如果有人能给我一些指示,我将不胜感激。除此之外,我的项目有两个目标 - 我不知道为什么,我不知道如何,我不知道如何改变它。这可能是问题吗?

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];

控制台打印输出是这样的:

013-11-28 12:11:31.902 DatabaseTest[57858:a0b] The code runs through here!
2013-11-28 12:11:31.908 DatabaseTest[57858:a0b] The code runs through here!
2013-11-28 12:11:31.911 DatabaseTest[57858:a0b] The code runs through here!
2013-11-28 12:11:31.917 DatabaseTest[57858:a0b] The code runs through here!
2013-11-28 12:11:31.921 DatabaseTest[57858:a0b] The code runs through here!
2013-11-28 12:11:31.924 DatabaseTest[57858:a0b] The code runs through here!
2013-11-28 12:11:31.929 DatabaseTest[57858:a0b] The code runs through here!
2013-11-28 12:11:31.931 DatabaseTest[57858:a0b] The code runs through here!
2013-11-28 12:11:31.932 DatabaseTest[57858:a0b] *** Assertion failure in -[UITableView dequeueReusableCellWithIdentifier:forIndexPath:], /SourceCache/UIKit_Sim/UIKit-2903.23/UITableView.m:5261
2013-11-28 12:11:31.936 DatabaseTest[57858:a0b] *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'unable to dequeue a cell with identifier tag - must register a nib or a class for the identifier or connect a prototype cell in a storyboard'

#import "SidebarViewController.h"
#import "SWRevealViewController.h"

@interface SidebarViewController ()

@property (nonatomic, strong) NSArray *menuItems;
@end

@implementation SidebarViewController

- (id)initWithStyle:(UITableViewStyle)style
{
    self = [super initWithStyle:style];
    if (self) {
        // Custom initialization
    }
    return self;
}

- (void)viewDidLoad
{
    [super viewDidLoad];

    self.view.backgroundColor = [UIColor colorWithWhite:0.2f alpha:1.0f];
    self.tableView.backgroundColor = [UIColor colorWithWhite:0.2f alpha:1.0f];
    self.tableView.separatorColor = [UIColor colorWithWhite:0.15f alpha:0.2f];

    _menuItems = @[@"title", @"news", @"comments", @"map", @"calendar", @"wishlist", @"bookmark", @"tag"];

}

- (void) prepareForSegue: (UIStoryboardSegue *) segue sender: (id) sender
{
    // Set the title of navigation bar by using the menu items
    NSIndexPath *indexPath = [self.tableView indexPathForSelectedRow];
    UINavigationController *destViewController = (UINavigationController*)segue.destinationViewController;
    destViewController.title = [[_menuItems objectAtIndex:indexPath.row] capitalizedString];


    if ( [segue isKindOfClass: [SWRevealViewControllerSegue class]] ) {
        SWRevealViewControllerSegue *swSegue = (SWRevealViewControllerSegue*) segue;

        swSegue.performBlock = ^(SWRevealViewControllerSegue* rvc_segue, UIViewController* svc, UIViewController* dvc) {

            UINavigationController* navController = (UINavigationController*)self.revealViewController.frontViewController;
            [navController setViewControllers: @[dvc] animated: NO ];
            [self.revealViewController setFrontViewPosition: FrontViewPositionLeft animated: YES];
        };

    }

}
- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

#pragma mark - Table view data source

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    // Return the number of sections.
    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    // Return the number of rows in the section.
    return [self.menuItems count];
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    NSString *CellIdentifier = [self.menuItems objectAtIndex:indexPath.row];
    NSLog(@"The code runs through here!");
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];

    return cell;
}

@end

3 个答案:

答案 0 :(得分:1)

您必须使用

static NSString *CellIdentifier = @"messageCell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier]; 

如果您的单元格未注册具有Cell ID的类或nib,请不要使用;

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier
forIndexPath:indexPath];

Apple文档:

重要

在调用此方法之前,必须使用registerNib:forCellReuseIdentifier:或registerClass:forCellReuseIdentifier:方法注册类或nib文件。

编辑:

答案 1 :(得分:0)

这是错误的:

NSString *CellIdentifier = [self.menuItems objectAtIndex:indexPath.row];

除非你为每一行注册了一个单元格,否则这不起作用。

您需要使用已在代码或storyboard / xib中注册的单元格标识符。

另外 - 如果每个单元格加载具有唯一标识符的单元格,那么您现在这样做的方式现在不利用单元格重用。

答案 2 :(得分:0)

我不确定你是否还在回答这个问题,但如果你在这里就是你解决问题的方法。

您的问题是由于单元格没有标识符,或者如果有,标识符与NSArray * menuItems中的代码不匹配。解决问题:

  • 您应该转到文档大纲(故事板左下方的小箭头)
  • 然后你应该点击'Table View Cell - 标签。 (它应突出显示单元格'Tag'
  • 转到属性检查器并找到“标识符”

  • 最后,在您的案例“代码”中更改或广告标识符名称。

  • 瞧瞧!这应该可以解决问题

注意拼写,因为目标C拼写非常紧张,我的意思是你必须确保拼写标识符的方式相同,你必须在代码中使用相同的拼写。

希望有帮助,

见图:(我想给你发一张,但好像我不能这样做,哎呀!)