gpt4 book ai didi

objective-c - 检查osx菜单栏是否半透明?

转载 作者:行者123 更新时间:2023-12-03 17:24:42 25 4
gpt4 key购买 nike

我们可以从“系统偏好设置”->“桌面设置”更改半透明菜单栏的设置。

有没有办法从某些 API 或 plist 文件中读取此设置,并在用户从半透明菜单栏设置切换时收到通知?

如果我们这样做,

[[NSDistributedNotificationCenter defaultCenter]
addObserver:self
selector:@selector(dockChanges:)
name:@"com.apple.dock.prefchanged"
object:nil];

我们可以收到系统偏好设置更改的通知。我正在寻找相同的东西?

最佳答案

这就是我们如何获取有关菜单透明度的信息。

NSDictionary *oldGlobalPreferences = [NSDictionary dictionaryWithContentsOfFile: 
[@"~/Library/Preferences/.GlobalPreferences.plist"
stringByExpandingTildeInPath]];

bool bIsTransparencyEnabled = [[oldGlobalPreferences objectForKey:@"AppleEnableMenuBarTransparency"] boolValue];

关于objective-c - 检查osx菜单栏是否半透明?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10173422/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com