我试图创建一个应用程序,当用户打开第一个视图时,它会提供一个很好的问候。例如,根据一天中的时间,它会说“早上好/下午/晚上-用户名”。如何获取用户在iPhone上的名称?我需要Settings > General > About _ NAME上的名称?
Settings > General > About _ NAME
4zcjmb1e1#
UIDevice.current.name 返回设备名称,因此您应该解析字符串,尝试区分设备类型(iPhone、iPad等)和名称。假设你有“我的iPhone”、“玛丽的iPhone”或“约翰的iPhone”或类似的。有些人尝试使用正则表达式,但效果不是很好,特别是对于非英语名字。http://stackoverflow.com/questions/8261961/better-way-to-get-the-users-name-from-device
rsaldnfx2#
UI设备.当前设备().名称
UIDevice.current.name
nzk0hqpo3#
let benutzerGeraeteName = UIDevice.current.name print("Hallo, \(benutzerGeraeteName)")
3条答案
按热度按时间4zcjmb1e1#
UIDevice.current.name 返回设备名称,因此您应该解析字符串,尝试区分设备类型(iPhone、iPad等)和名称。假设你有“我的iPhone”、“玛丽的iPhone”或“约翰的iPhone”或类似的。
有些人尝试使用正则表达式,但效果不是很好,特别是对于非英语名字。
http://stackoverflow.com/questions/8261961/better-way-to-get-the-users-name-from-device
rsaldnfx2#
UI设备.当前设备().名称
UIDevice.current.name
nzk0hqpo3#