从Nib加载多个自定义单元格

时间:2013-02-06 19:14:05

标签: ios objective-c xcode

如果我只返回一行单元格,这就完美了。 但是,如果我输入超过1,我会收到错误消息:“索引1超出边界[0 .. 0]”

我制作了一个xib文件,其中有一个具有独特设计的表格单元格,我只想反复使用它只更改一些标签。我是以错误的方式解决这个问题吗?

    - (void)viewDidLoad
    {
        [super viewDidLoad];

        // Uncomment the following line to preserve selection between presentations.
        // self.clearsSelectionOnViewWillAppear = NO;

        // Uncomment the following line to display an Edit button in the navigation bar for this view controller.
        // self.navigationItem.rightBarButtonItem = self.editButtonItem;
    }

    - (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 2;
    }


    - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
    {
        static NSString *simpleTableIdentifier = @"Cell";

        SectionCell *cell = [tableView dequeueReusableCellWithIdentifier:simpleTableIdentifier];

        if (cell == nil)
        {


            NSArray * nib = [[NSBundle mainBundle] loadNibNamed:@"ButtonCell" owner:self options:nil];

cell = [[SectionCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"Cell"];

            cell = (SectionCell *)[nib objectAtIndex:0];

        }


        cell.backgroundView.layer.masksToBounds = YES;
        cell.backgroundView.layer.cornerRadius = 20.0;

        cell.name.text=@"Cell Test";


        tableView.backgroundView = nil;
        tableView.backgroundColor = [UIColor clearColor];
        return cell;
    }

    /*
    // Override to support conditional editing of the table view.
    - (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
    {
        // Return NO if you do not want the specified item to be editable.
        return YES;
    }
    */


    - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
    {
        return 78;
    }

2 个答案:

答案 0 :(得分:1)

而不是使用:

cell = [nib objectAtIndex:indexPath.row];

使用:

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

}

因为你的笔尖可能只有一个对象,即自定义表视图单元格。

PS:假设你有一个名为“ButtonCell”的xib,它有一个自定义视图,其自定义类设置为“SectionCell”

答案 1 :(得分:0)

找到答案。我不得不在表视图中使用static并使用动态原型。唯一的缺点是我无法使用自定义xib单元格,并且必须修改默认单元格以尽可能接近我的静态单元格。