Я пытаюсь реализовать скользящее меню, как в приложении Facebook.
У меня есть NIB для пользовательского UITableViewCell, который включает кнопку.
С кнопкой связан IBAction, с которым я анимирую в подпредставлении моего NIB (меню удаления / редактирования).
Моя проблема в том, что моя анимация происходит только в одной ячейке, а не в той ячейке, где я нажал кнопку.
Как бы я назвал эту анимацию для работы с ячейкой, где была нажата моя кнопка?
Вот мой код до сих пор. Любые советы?
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *PatientCellIdentifier = @"PatientCellIdentifier";
PatientListTableViewCell *cell = (PatientListTableViewCell *)[tableView dequeueReusableCellWithIdentifier:PatientCellIdentifier];
if (cell ==nil) {
NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"PatientCell" owner:self options:nil];
cell = [nib objectAtIndex:0];
cell.backgroundView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"cellBG.png"]];
}
//NSUInteger row = [indexPath row];
//NSDictionary *rowData = [self.
[self configureCell:cell atIndexPath:indexPath];
return cell; }
-(IBAction)showMenu:(id)sender{
[self showMenuForCell:sender animated:YES];}
- (void)showMenuForCell:(UITableViewCell *)cell animated:(BOOL)animated {
//[super showMenu:view forCell:cell animated:animated];
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:0.3];
//Action here
[UIView commitAnimations];
}