したがって、try/catch ブロックが発生した後にモーダル ウィンドウを表示して、ユーザーが特定の選択を行えるようにするプログラムがあり、プログラムを続行したいと考えています。これを機能させる方法がわかりません。これらの例外が引き続き発生します。
*** Assertion failure in -[NSApplication _commonBeginModalSessionForWindow:relativeToWindow:modalDelegate:didEndSelector:contextInfo:], /SourceCache/AppKit/AppKit-1187.34/AppKit.subproj/NSApplication.m:3920
Exception detected while handling key input.
Modal session requires modal window
モーダル シートを 2 つの異なる方法で表示するように構成しました。最初の方法はボタンを押す方法で、2 番目の方法は try catch ブロックの後です。直接リンクされているボタンを押して表示するとConfigure Game
正常に動作しますが、別のメソッドで try catch ブロックを介して表示すると、上記のすべての例外がスローされます。
//Method that opens the modal sheet
- (IBAction)configureGame:(id)sender
{
//Calls a webview for the user to go to a specific location
NSString *FGstarter = @"http://www.google.com";
NSURL *FGplayerUrl = [NSURL URLWithString:FGstarter];
[webView setMainFrameURL:[FGplayerUrl absoluteString]];
//Opens the Modal Sheet
[NSApp beginSheet:configureSheet modalForWindow:mainWindow
modalDelegate:self didEndSelector:NULL contextInfo:nil];
}
//Select Method to a Select button which also closes the Sheet
- (IBAction)select:(id)sender{
//sets a NSString Instance Var to the Current URL of the webView
currentPage = [webView stringByEvaluatingJavaScriptFromString:@"window.location.href"]);
//Closes the sheet
[NSApp endSheet:configureSheet];
}
-(NSMutableArray *)loadPlayer:(NSString *)name{
@try {
// Code here might cause exception that gets caught in the catch
}
@catch (NSException *exception) {
//When I call this function I get all the exceptions listed in the top of the post
[self configureGame:nil];
//Ideally here what would happen here is the modal sheet would pop up the user would hit the select button that calls the select method then the program continues running.
}
NSString *page = currentPage;
//...Continue Using this method
}