使用扩展类进行自定义时UITableViewCell的问题

时间:2011-09-12 23:02:50

标签: iphone uitableview customizing

我有一个UITableViewCell的2个类,它们显示不同的数据,但它们使用相同的表。

我试图通过使用bool var在两个步骤中填充表格,但似乎我得到了一个例外,因为单元格获得了第一个类赋值并且不能变异......

基本上,我必须进行单元扩展类

@interface PatientsCellNewPager : UITableViewCell { } 
@interface DoctorsCellNewPager : UITableViewCell { } 

当我在第2步并尝试更改单元格类型并在[cell setData:set cellid:[NSString stringWithFormat:@"%d",indexPath.row] ];处发出异常时,代码会刹车 在阶段== 2 if block ..

这是因为根据调试器的单元格仍然具有第一次初始化时的DoctorsCellNewPager类型....

我怎么能这样做呢? 它必须使用相同的类实例在同一页面上,但使用多个布局并定义单元格布局,这将是一个糟糕的选择

这是我的代码

// Customize the appearance of table view cells.
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

    static NSString *CellIdentifier = @"Cell";



    if (phase==2) { //patient


        PatientsCellNewPager *cell =(PatientsCellNewPager *)  [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [[[PatientsCellNewPager alloc] initWithFrame:CGRectZero reuseIdentifier:CellIdentifier] autorelease];
    }







        PatientsSet *set = (PatientsSet *)[patients_set objectAtIndex:indexPath.row];       

        NSLog(@"logg %d",indexPath.row);    


        [cell setData:set cellid:[NSString stringWithFormat:@"%d",indexPath.row] ]; 




           return cell;

    }
    else if (phase==1) { //doctor


        DoctorsCellNewPager *cell =(DoctorsCellNewPager *)  [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
        if (cell == nil) {
            cell = [[[DoctorsCellNewPager alloc] initWithFrame:CGRectZero reuseIdentifier:CellIdentifier] autorelease];
        }





            // Set up the cell

            DoctorsSet *set = (DoctorsSet *)[doctors_set objectAtIndex:indexPath.row];      


              [cell setData:set cellid:[NSString stringWithFormat:@"%d",indexPath.row] pass:YES ];  





        return cell;


    }


    return nil;

}

这是我的错误

Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[DoctorsCellNewPager setData:cellid:]: unrecognized selector sent to instance 0x181690'
*** Call stack at first throw:
(
    0   CoreFoundation                      0x323ef64f __exceptionPreprocess + 114
    1   libobjc.A.dylib                     0x36632c5d objc_exception_throw + 24
    2   CoreFoundation                      0x323f31bf -[NSObject(NSObject) doesNotRecognizeSelector:] + 102
    3   CoreFoundation                      0x323f2649 ___forwarding___ + 508

2 个答案:

答案 0 :(得分:1)

您最后错过了pass:.. param,而您调用的方法[DoctorsCellNewPager setData:celled:]没有设置参数pass。所以添加pass参数,它应该运行正常。

答案 1 :(得分:1)

这是一个非常普遍的问题,很多人都遇到过这个问题 - 最近我也不得不处理这个问题。

Matt Gallagher在他的博客上发布了一篇关于如何实现这一目标的精彩教程:

Heterogeneous cells in a UITableViewController


嗯,我刚刚知道它是如何工作的。
// 这是高度实验且未经过测试

static NSString *PatientsCellIdentifier = @"PatientsCellNewPager";
static NSString *DoctorsCellIdentifier = @"DoctorsCellNewPager";

UITableViewCell *cell;
if(patient) {
    cell = [tableView dequeueReusableCellWithIdentifier:PatientsCellIdentifier];
    if (cell == nil) {
        cell = [[[UITableViewCell alloc] 
        initWithStyle:UITableViewCellStyleDefault 
        reuseIdentifier:PatientsCellIdentifier] autorelease];
    }
    // Setup cell for patient -> maybe you could use -configureCell:atIndexPath:
} else if (doctor) {
    cell = [tableView dequeueReusableCellWithIdentifier:DoctorsCellIdentifier];
    if (cell == nil) {
        cell = [[[UITableViewCell alloc] 
        initWithStyle:UITableViewCellStyleDefault 
        reuseIdentifier:DoctorsCellIdentifier] autorelease];
    }
    // Setup cell for doctor -> maybe you could use -configureCell:atIndexPath:
}

return cell;

请告诉我这是否会让你更进一步..

HTH