0
Snow Leopardでフルスクリーンでnsviewを表示する方法はありますか?このようなCocoa:Snow Leopardフルスクリーンnsview
Snow Leopardでフルスクリーンでnsviewを表示する方法はありますか?このようなCocoa:Snow Leopardフルスクリーンnsview
何かがあなたのために働く必要があります -
- (IBAction)enterFullScreen:(id)sender
{
NSDictionary *fullScreenOptions = [[NSDictionary dictionaryWithObject:[NSNumber numberWithInt:1] forKey:NSFullScreenModeAllScreens] retain];
BOOL fullScreenEnteredFlag = [fullScreenView enterFullScreenMode:[NSScreen mainScreen] withOptions:fullScreenOptions];
}
のNSViewは、以下の方法
– enterFullScreenMode:withOptions:
– exitFullScreenModeWithOptions:
– isInFullScreenMode
はあなたがドキュメントを検索しましたか? NSViewクラスリファレンスを見てください。フルスクリーンモードのセクションがあります。 – sidyll
はい、google – rafa
@rafa次に、「フルスクリーン」と同じ結果が表示されると思いますので、何を試しましたか?何がうまくいかなかったのですか? –