7

在我的 UITableViewCell 中,我有一个方法 initNotification,它由创建 TableCells 的 cellForRowAtIndexPath 中的 TableViewController 调用。

我的问题是,每次重新加载此视图时,都会再次调用 initNotification 方法,因此当出现 Notification 时,NotificationHandle 会被调用 x 次!

我试图在再次添加之前删除观察者:

-(void) initNotification{
    [[NSNotificationCenter defaultCenter] removeObserver:self];

    [[NSNotificationCenter defaultCenter]
     addObserver:self
     selector:@selector(handleNotificationOnOff:)
     name:[[NSString alloc] initWithFormat:@"%@",[self.light beckhoffOnOff]]
     object:nil];
}

但这也不起作用。问题是,我不能使用布尔标志或类似的东西,因为单元总是由 ViewController 重新初始化。

是否有适当的方法从 NotificationCenter 中删除 NotificationHandle?

编辑:这就是我创建自定义 TableViewCells 的方式

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    UITableViewCell *cell;
    Light* l = [[staticModel.model getRoomAtIndex:[indexPath section]]getLightAtIndex:[indexPath item]];
    if([l typ]==ONOFF){
        TableCellLight *conof = [tableView dequeueReusableCellWithIdentifier:@"ReuseIDOnOff" forIndexPath:indexPath];
        LightOnOff *lonof = (LightOnOff*) l;
        [[conof label] setText: [lonof bezeichnung]];
        conof.light=lonof;

        [conof initNotification];
        cell = conof;
    }
   if([l typ]==DIMMER){
        TableCellLightDim *cdim = [tableView dequeueReusableCellWithIdentifier:@"ReuseIDDim" forIndexPath:indexPath];

        LightDim *ldim= (LightDim*) l;
        [[cdim label] setText: [ldim bezeichnung]];
        [[cdim slider]setValue:[ldim dimVal]];
        cdim.light=ldim;
        [cdim initNotification];
        cell = cdim;
    }
    if([l typ]==RGB){
        TableCellLightRGB *crgb = [tableView dequeueReusableCellWithIdentifier:@"ReuseIDRGB" forIndexPath:indexPath];
        LightRGB *lrgb= (LightRGB*) l;
        [[crgb label] setText: [lrgb bezeichnung]];
        crgb.light=lrgb;
        crgb.owner=self;
        [crgb initNotification];
        cell = crgb;
    }

    return cell;
}

谢谢

4

1 回答 1

13

一般来说,细胞不应该观察任何东西。控制器应该观察变化并将更新的信息推送到单元上。

removeObserver:在添加观察者之前调用应该可以工作。如果您要在单元格中执行任何操作prepareForReusetableView:didEndDisplayingCell:forRowAtIndexPath:重置单元格,那将是您使用的代码。你需要看看你是如何测试它不工作的,以及你是如何重复使用细胞的。

于 2013-07-12T06:39:52.463 回答