equal
deleted
inserted
replaced
67 #pragma mark button functions |
67 #pragma mark button functions |
68 -(IBAction) buttonPressed:(id) sender { |
68 -(IBAction) buttonPressed:(id) sender { |
69 UIButton *button = (UIButton *)sender; |
69 UIButton *button = (UIButton *)sender; |
70 |
70 |
71 if (button.tag == 0) { |
71 if (button.tag == 0) { |
72 playSound(@"backSound"); |
72 [AudioManagerController playBackSound]; |
73 [self.tableView setEditing:NO animated:YES]; |
73 [self.tableView setEditing:NO animated:YES]; |
74 [[self parentViewController] dismissModalViewControllerAnimated:YES]; |
74 [[self parentViewController] dismissModalViewControllerAnimated:YES]; |
75 } else { |
75 } else { |
76 NSString *titleStr, *cancelStr, *confirmStr; |
76 NSString *titleStr, *cancelStr, *confirmStr; |
77 titleStr = NSLocalizedString(@"Are you reeeeeally sure?", @""); |
77 titleStr = NSLocalizedString(@"Are you reeeeeally sure?", @""); |