ヨセミテでは、サイドバーには半透明の「鮮やかな」背景があります。 10.10/Xcode 6でそのようなビューを作成するにはどうすればよいですか?
このような背景を表示できますか? NSOutlineView
は、「ソースリスト」ハイライトスタイルを指定すると、デフォルトでこのような背景になりますが、Calendar.appのサイドバーはNSOutlineViewに見えないので、このための一般的なソリューション。
OSXオペレーティングシステムのヨセミテバージョンの導入に伴い、Appleはvibrancyと呼ばれる新しいモードを導入しました。これは、Cocoaウィンドウとウィンドウコンポーネント。シャワーのドアを覗くようなもので、NSVisualEffectView
を使用します。 Apple ここでこの効果を説明 。
NSViewでこのカテゴリを使用します。活気のあるビューを呼び出すだけです。また、ヨセミテ以前との後方互換性もあります。 (前ヨセミテを持っている場合、効果は表示されません)
@implementation NSView (HS)
-(instancetype)insertVibrancyViewBlendingMode:(NSVisualEffectBlendingMode)mode
{
Class vibrantClass=NSClassFromString(@"NSVisualEffectView");
if (vibrantClass)
{
NSVisualEffectView *vibrant=[[vibrantClass alloc] initWithFrame:self.bounds];
[vibrant setAutoresizingMask:NSViewWidthSizable|NSViewHeightSizable];
// uncomment for dark mode instead of light mode
// [vibrant setAppearance:[NSAppearance appearanceNamed:NSAppearanceNameVibrantDark]];
[vibrant setBlendingMode:mode];
[self addSubview:vibrant positioned:NSWindowBelow relativeTo:nil];
return vibrant;
}
return nil;
}
@end
@Volomikeの詳細な手順は次のとおりです…
AppKit.frameworkをプロジェクト設定>ビルドフェーズ>ライブラリとリンクバイナリに追加NSVisualEffectViewを認識できるようにします。
メインウィンドウのデフォルトビューではなく、アウトレットデリゲートを作成しますそれ自体、AppDelegate.mまたはAppDelegate.mmファイル。 (もしあなたが新しいなら、 このチュートリアルを読む 。)ここでの目的のために、これをmainview
と名付け、コードで_mainview
としてアドレス指定できると仮定しましょう。
プロジェクトにカテゴリを含めます。その場合は、AppDelegate.mまたはAppDelegate.mmファイルの@implementation
行の前にカテゴリを追加します。
AppDelegate.mまたはAppDelegate.mmファイル、@implementation AppDelegate
、applicationDidFinishLaunching
クラスメソッド、次のコード行を追加します:
[_mainview insertVibrancyViewBlendingMode:NSVisualEffectBlendingModeBehindWindow];
現在の最終的な効果は、タイトルバーの下のウィンドウ全体、または必要な部分(サイドバーなど)のみがこの鮮やかな効果を示すことです。
w00t! コード例 まだ文書化されていないビュータイプを使用しています:
NSVisualEffectView
に埋め込みますNSView
を返すためにオーバーライドできるallowsVibrancy
メソッドYES
もありますが、私の場合、これが活気を有効にしないという理由がまだ理解できていません。
単にNSVisualEffectView
を使用してください。次のようなフィールドでさらに微調整できます。
class MyFancyView: NSVisualEffectView {
func myConfigureFunc() {
// Use blendingMode to specify what exactly is blurred
blendingMode = .behindWindow // [DEFAULT] ignores in-window content and only blurs content behind the window
blendingMode = .withinWindow // ignores content behind the window and only blurs in-window content behind this view
// Use material to specify how the blur draws (light/dark/etc.)
material = .light // The Vibrant Light look we see in countless Apple apps' sidebars, Sierra notification center, etc.
material = .dark // The Vibrant Dark look we all know and love from HUDs, Launchpad, Yosemite & El Capitan notification center, etc.
material = .appearanceBased // [DEFAULT] Automatically uses .light or .dark, depending on the view's appearance field
material = .titlebar // The material the system uses in titlebars. Designed to be used with blendingMode = .withinWindow
material = .selection // A special material for selection. The material will vary depending on the effectiveAppearance, active state, and emphasized state.
if #available(OSX 10.11, *) {
// Materials introduced in 10.11 (El Capitan)
material = .mediumLight // Not quite as light as .light
material = .ultraDark // Much darker than .dark
material = .menu // The material the system uses for menus
material = .popover // The material the system uses for popovers
material = .sidebar // The material the system uses for sidebars
}
// Use state to specify when the visual effect appears
state = .active // Always show the visual effect
state = .inactive // Never show the visual effect (behaves like a normal view)
state = .followsWindowActiveState // [DEFAULT] Active when window is active, not when window is not
}
}
詳細については、公式のAppleビデオ: WWDC 2014 Session 22