Re: Getting the user's name from cocoa
Re: Getting the user's name from cocoa
- Subject: Re: Getting the user's name from cocoa
- From: David Remahl <email@hidden>
- Date: Mon, 02 Jul 2001 16:52:19 +0200
Granted, but still he doesn't need that information to implement
NSUserDefaults...
/ david
>
FOUNDATION_EXPORT NSString *NSUserName(void);
>
FOUNDATION_EXPORT NSString *NSFullUserName(void);
>
>
See the file NSPathUtilities.h in Foundation.
>
>
Eric
>
>
On Monday, July 2, 2001, at 03:39 AM, Simon Stapleton wrote:
>
>
> Another newbie question.
>
>
>
> I'm just adding a bunch of defaults processing to my app, and one
>
> of the
>
> fields it asks for is the user's name. Now it occurs to me that the
>
> system knows who the user is - is this stored anywhere in the cocoa
>
> preferences stuff, or do I have to go off to the OS and get it?
>
>
>
> Simon