簡単な質問があります。スライダーの値に応じてウィンドウのアルファ値を設定する以下の方法がありますが、ウィンドウのコンテンツも半透明になり、最終的にウィンドウとともに消えます。
ウィンドウ内のコンテンツ ビューではなく、ウィンドウのアルファ値を変更する方法はありますか?
- (IBAction)changeTransparency:(id)sender {
// Set the window's alpha value. This will cause the views in the window to redraw.
[self.window setAlphaValue:[sender floatValue]];}
ありがとう、サミ。