次のように表示される vc0 というビュー コントローラーがあります。
[self presentViewController: vc1 animated: YES completion: nil];
そして vc1 には、別のView Controllerを表示するためのボタンがあります:
[self presentViewController: vc2 animated: YES completion: nil];
次に、vc2 に、View Controller を閉じるボタンがあります。
[self dismissViewControllerAnimated:YES completion: ^{
// over here I call one method in vc1
}
そして予想通り、それは vc1 に戻ります。ただし、次のようにビュー コントローラを閉じることによって vc0 に戻るボタンが vc1 にあります。
[self dismissViewControllerAnimated:YES completion:nil];
しかし、何らかの理由で機能せず、View Controller が vc0 に戻されません。最初に vc1 を表示するときに、ボタンを押してビュー コントローラーを閉じると、機能します。しかし、ボタンを押してvc2を開き、vc2を閉じてvc1に戻し、ボタンを押してView Controllerを閉じると、それが機能しなくなります。
質問が少し不明確な場合は申し訳ありません。私が言おうとしていることを表現するのは少し難しいです。
また、もう1つ:
手動で vc0 を提示するために vc1 を置き換えよdismissViewControllerAnimated:
うとしましたが、vc0 を提示しようとしているが、vc1 のビューがウィンドウ階層にないというログがコンソールに表示されます。これは何を意味するのでしょうか?
手伝ってくれてありがとう!
アップデート:
この場合、VC0 はMenuMileIndexViewController
- VC1 はFlightViewController
- VC2 はBookmarksTableViewController
関連するコードは次のとおりです。
MenuMileIndexViewController:
- (IBAction)goToOriginPage {
FlightRecorder *origin = [[FlightRecorder alloc] init];
[self presentViewController:origin animated:YES completion:nil];
}
フライトレコーダー:
- (void)searchBarBookmarkButtonClicked:(UISearchBar *)searchBar {
[self bringUpBookmarkkTable];
}
- (void) bringUpBookmarkkTable {
BookmarkTableViewController *bookmarkTVC = [[BookmarkTableViewController alloc] init];
[bookmarkTVC setModalTransitionStyle: UIModalTransitionStyleFlipHorizontal];
[self presentViewController:bookmarkTVC animated:YES completion:nil];
}
- (IBAction)cancel {
[self dismissViewControllerAnimated:YES completion:nil];
}
- (void)endBookmarkProcessWithBookmarkCollection: (NSDictionary *)dict {
presetBookmarkContext = [dict mutableCopy];
bookmarkMode = YES;
NSString *compiledText = nil;
NSNumber *number1 = [NSNumber numberWithInt: 1];
if ([dict objectForKey: @"bookmarkTag"] == number1) {
compiledText = [NSString stringWithFormat: @"%@ to %@", [dict objectForKey: @"origin"], [dict objectForKey: @"destination"]];
}
else {
compiledText = [NSString stringWithFormat: @"%@ to %@", [dict objectForKey: @"destination"], [dict objectForKey: @"origin"]];
}
compiledText = [compiledText stringByReplacingOccurrencesOfString:@"Origin: " withString:@""];
compiledText = [compiledText stringByReplacingOccurrencesOfString:@"Destination: " withString:@""];
flightContext = [NSDictionary dictionaryWithObjectsAndKeys: [dict objectForKey: @"miles"], @"miles", compiledText, @"location", [[NSUserDefaults standardUserDefaults] objectForKey: @"tempD"], @"date", nil];
NSString *string = [NSString stringWithFormat: @"\nMiles: %.2f\nFlight: %@\nDate: %@", [[dict objectForKey: @"miles"] floatValue], compiledText, [[NSUserDefaults standardUserDefaults] objectForKey:@"tempD"]];
UIAlertView *bvkBookmarkAlertView = [[UIAlertView alloc] initWithTitle:@"Confirmation" message:string delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"Add", nil];
[bvkBookmarkAlertView show];
}
- (void)alertView:(UIAlertView *)alertView didDismissWithButtonIndex:(NSInteger)buttonIndex {
if (buttonIndex == 1) {
[self cancel]; // Even though cancel is an IBAction, IBAction is the same thing as void so it is callable
}
}
- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex {
if (buttonIndex == 1) {
[TheMileIndexViewController addDesiredMilesToIndex: [[flightContext objectForKey: @"miles"] doubleValue]];
[TravelLogViewController addFlight: flightContext];
if (!bookmarkMode) {
if ([checkbox isSelected]) {
[BookmarkHandler uploadBookmark: bookmarkFlightContext];
}
}
}
if (buttonIndex == 0) {
if ([alertView.title isEqualToString: @"Confirmation"]) {
bookmarkMode = NO;
}
}
}
ブックマークTableViewController:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
[tableView deselectRowAtIndexPath:indexPath animated: YES];
NSDictionary *dict = [[BookmarkHandler bookmarkCollection] objectAtIndex: indexPath.row];
fl = [[FlightRecorder alloc] init];
[self dismissViewControllerAnimated:YES completion:^{
[fl endBookmarkProcessWithBookmarkCollection: dict];
}];
}
今、シミュレーターでアプリの画面記録を作成し、問題を示しています。参考までに、それをあなたにメールで送ることができます。だから私はあなたにそれをメールすることができます.