Как удалить записи основных данных через табличное представление, получив значение индекса - PullRequest
0 голосов
/ 03 февраля 2012

Я использую этот код для cellForRowAtIndexPath:

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

if (tableView == favouritesTable) {
    cellValue = [licensePlateArray objectAtIndex:indexPath.row];
} else { // handle search results table view
    cellValue = [filteredListItems objectAtIndex:indexPath.row];
}

static NSString *CellIdentifier = @"vlCell";

VehicleListCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

if (cell == nil) {

    NSLog(@"Cell Created");

    NSArray *nibObjects = [[NSBundle mainBundle] loadNibNamed:@"VehicleListCell" owner:nil options:nil];

    for (id currentObject in nibObjects) {
        if ([currentObject isKindOfClass:[VehicleListCell class]]) {
            cell = (VehicleListCell *)currentObject;
        }

    }

}
UILongPressGestureRecognizer *pressRecongnizer = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(tableCellPressed:)];
pressRecongnizer.view.tag = indexPath.row;
//code added
[pressRecongnizer setValue:[NSNumber numberWithInt:indexPath.row] forKey:@"index"];
toDeleteObject = [results objectAtIndex:indexPath.row];
pressRecongnizer.minimumPressDuration = 0.5f;
[cell addGestureRecognizer:pressRecongnizer];
[pressRecongnizer release];

   // NSIndexPath *indexPathValue = [NSIndexPath indexPathForRow:indexPath.row inSection:0];
   // [tableView selectRowAtIndexPath:indexPath animated:NO scrollPosition: UITableViewScrollPositionNone];

  //  NSLog(@"indexPathValue: %@", indexPathValue);

cell.textLabel.font = [UIFont systemFontOfSize:10];

Favouritesdata *favdata = [results objectAtIndex:indexPath.row];

[[cell ignition] setImage:[UIImage imageNamed:@"ignition_flag.png"]];
[[cell direction] setImage:[UIImage imageNamed:@"south.png"]];

cell.licPlate.text = [favdata licenseplate];

NSLog(@"cellvalue for cellforRow: %@", cell.licPlate.text);

return cell;
}

и в коде UILongPressGestureRecognizer:

- (void)tableCellPressed:(UILongPressGestureRecognizer *)recognizer{

if (recognizer.state != UIGestureRecognizerStateBegan) {
    return;
}

int index = [[recognizer valueForKey:@"index"] intValue];

NSLog(@"indexNew: %i", index);

VehicleListCell* cell = (VehicleListCell *)[recognizer view];

cellValueForLongPress = cell.licPlate.text;

NSLog(@"cell value: %@", cellValueForLongPress);

UIAlertView *alert = [[UIAlertView alloc] initWithTitle:nil message:nil delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles: nil] ;

NSIndexPath *tableSelection = [favouritesTable indexPathForSelectedRow];

[favouritesTable selectRowAtIndexPath:tableSelection 
                       animated:NO 
                 scrollPosition:UITableViewScrollPositionMiddle];

NSLog(@"NSIndexPath *tableSelection = %@", tableSelection );

alert.tag = recognizer.view.tag;

NSLog(@"alert.tag: %d", alert.tag);

[alert addButtonWithTitle:@"Remove from Favourites"];
[alert addButtonWithTitle:@"Show on Map"];

[alert show];
}

В этом коде я применил распознаватель жестов, у него есть диалоговое окно, которое дает пользователю возможность удалить запись основных данных. Здесь проблема, с которой я сталкиваюсь, заключается в том, что я не могу получить точное значение ввода данных, которое должно быть удалено, так как не имеет значения, какая бы ячейка / строка ни была нажата, будет удалена только основная запись данных, находящаяся в индексе-0 , Я потратил много дней, чтобы решить эту проблему, но не справился.

Пожалуйста, помогите мне в этом вопросе ...

Заранее спасибо

1 Ответ

1 голос
/ 03 февраля 2012

Проверьте имена методов один раз, я не проверял их

-(void)tableCellPressed:(UILongPressGestureRecognizer*)gust{
    UITableViewCell *cell = (id)gust.view;
    NSIndexPath *ip = [tableView indexPathForCell:cell];
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...