可以访问Mac用户帐户图像

时间:2017-08-05 17:31:46

标签: macos cocoa nsimageview

我希望能够将用户帐户图像设置为NSImageView,即使图像是自定义图像。

这可能吗?

这是我所说的形象。

Screenshot of Users & Groups pref pane

1 个答案:

答案 0 :(得分:3)

使用协作框架。 CBIdentity准确。

-(NSImage *)userImage {
    CBIdentity *identity = [CBIdentity identityWithName:NSUserName() authority:[CBIdentityAuthority defaultIdentityAuthority]];
    return [identity image];
}

https://developer.apple.com/documentation/collaboration/cbidentity