xcode 显示当前用户的用户名 (Swift)
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/26045814/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-09-15 05:42:03 来源:igfitidea点击:
Displaying the username of current user (Swift)
提问by ixany
Is it possible to display the username of the current user in a macOS app?
是否可以在 macOS 应用程序中显示当前用户的用户名?
采纳答案by ixany
Swift 4.2
斯威夫特 4.2
let userName = NSUserName()
let fullUserName = NSFullUserName()
回答by mipadi
You can use the NSUserName()
function:
您可以使用该NSUserName()
功能:
var username = NSUserName()!