This question already has answers here:
Get User Account Image
                            
                                (3个答案)
                            
                    
                2年前关闭。
        

    

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

这可能吗?

这就是我所说的图像。

最佳答案

使用协作框架。 CBIdentity是准确的。

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


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

08-05 21:43