http://www.imore.com/how-disable-touch-bar-macbook-pro-so-you-can-take-your-exams
该博客讨论了用户在 mac book pro 上禁用新的触摸栏。
可以通过使用 Objective C 或 JAVA 来实现相同的目标吗?
http://www.imore.com/how-disable-touch-bar-macbook-pro-so-you-can-take-your-exams
该博客讨论了用户在 mac book pro 上禁用新的触摸栏。
可以通过使用 Objective C 或 JAVA 来实现相同的目标吗?
我们可以通过将 NSFunctionBarAPIEnabled 布尔值设置为 No 来实现这一点。
默认写入 com.apple.systemuiserver NSFunctionBarAPIEnabled -bool NO
你可以在目标c中做同样的事情
NSDictionary* myDict = [NSDictionary dictionaryWithObject:[NSNumber numberWithBool:NO] forKey:@"NSFunctionBarAPIEnabled"];
[[NSUserDefaults standardUserDefaults] registerDefaults:myDict];
资料来源:http: //indiestack.com/2016/12/touch-bar-crash-protection/