Niestandardowe przyciski w XIB używane jako niestandardowe UITableViewCell nie reagują na stuknięcia (ios7)

Więc tutaj aktualizuję działającą aplikację ios6 do ios7, a teraz nie mogę odbierać stuknięć ani innych działań na przyciskach niestandardowych (lub innych podstronach) wewnątrz moich komend tableview.

Edytować:

Mój kod:

Tutaj wdrażam moją komórkę miejsca

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

    PlaceCell *cell = [tableView dequeueReusableCellWithIdentifier: cellIdentifier];

    if (!cell) {
        NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"PlaceCell" owner:self options:nil];
        cell = [nib lastObject];
        cell.reuseIdentifier = cellIdentifier;
    }
    [cell configureCellWithPlace: [self.places objectAtIndex:indexPath.row]];
    cell.delegate = self;
    cell.userInteractionEnabled = YES;

    return cell;
}

I to jest normalna niestandardowa komórka z przyciskami, które są połączone z niektórymi działaniami przez interfejs. Działa idealnie z iOS6, ale nie działa z iOS7.

Dziękuję za pomoc.

questionAnswers(5)

yourAnswerToTheQuestion