Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there any complete documentation (the interface is present in crt_externs.h) about this functions : _NSGetArgc and _NSGetArgv I can't get any documentation on the apple website about this functions.

share|improve this question

3 Answers

up vote 23 down vote accepted

If all you need to do is get the command line arguments in Cocoa, you can do:

NSArray *arguments = [[NSProcessInfo processInfo] arguments];
share|improve this answer
Thanks but this is just ok from the main function? not from anywhere in the program like _NSGetArgc and _NSGetArgv can do. – iPadDevloperJr Feb 28 '11 at 20:25
Yes -- from anywhere (I'm not sure what gave you the impression that it might not be OK?). – bbum Feb 28 '11 at 21:02

You can also access the commandline arguments using NSUserDefaults as described in the blogposts by Greg Miller or Alex Rozanski.

You basically get an NSUserDefaults instance through a call to [NSUserDefaults standardUserDefaults] and then use messages like boolForKey: or stringForKey: to access the values.

The official Apple documentation can be found here.

share|improve this answer

As those functions are prefixed with an "_", that's usually a sign that they are private, and not meant to be used by you. If you need to get the command line arguments, a better way to do it would be to look up NSProcessInfo.

share|improve this answer
Thanks i was reading this article(unixjunkie.blogspot.com/2006/07/…) and i'm just curious about this functions and their capacity to accessing command line arguments from anywhere. – iPadDevloperJr Feb 28 '11 at 20:01
@Evariste Yes, you can use it anywhere. NSProcess info returns information about the current process. – s73v3r Mar 1 '11 at 1:08

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.