
Macアプリケーションで、ウィンドウを閉じた時にアプリケーションを終了させる方法です。
終了させたいNSApplicationオブジェクトのwindowWillCloseメソッドで、NSWindowオブジェクトが閉じたことを検知できます。
1 |
アプリケーションの終了は、NSApplicationオブジェクトのterminateメソッドを使用します。
1 | -(void)terminate:(id)sender; |
例) AppDelegate.m
1 2 3 |
Macアプリケーションは、メインウィンドウを閉じた時に再度ウィンドウを開くか、アプリケーションを終了させる実装をしないと、Appleの審査でリジェクトされます。
されました。。
以下、Appleからのリジェクトの理由です。
Reasons for Rejection:
The user interface is not consistent with the Apple Human Interface Guidelines.
We have found that when the user closes the main application window there is no menu item to re-open it. The app should implement a Window menu that lists the main window so it can be reopened, or provide similar functionality in another menu item. Apple Human Interface Guidelines, state that “The menu bar [a]lways contains [a] Window menu”.
Alternatively, if the application is a single-window app, it might be appropriate to save data and quit the app when the main window is closed.
For information on managing windows in Mac OS X, please review the following sections in Apple Human Interface Guidelines:
* The Menu Bar and Its Menus
* The Window Menu
* The File Menu
* Clicking in the Dock
* Window Behavior
Please evaluate how you can implement the appropriate changes, and resubmit your app for review.
We have found that when the user closes the main application window there is no menu item to re-open it. The app should implement a Window menu that lists the main window so it can be reopened, or provide similar functionality in another menu item. Apple Human Interface Guidelines, state that “The menu bar [a]lways contains [a] Window menu”.
Alternatively, if the application is a single-window app, it might be appropriate to save data and quit the app when the main window is closed.
For information on managing windows in Mac OS X, please review the following sections in Apple Human Interface Guidelines:
* The Menu Bar and Its Menus
* The Window Menu
* The File Menu
* Clicking in the Dock
* Window Behavior
Please evaluate how you can implement the appropriate changes, and resubmit your app for review.
私のアプリは、16日間の「Waiting For Review」ステータスを経て、わずか30分未満で上記理由によりRejectedされました。。
みなさんはどうか気をつけてください。