views:

31

answers:

1

How do I print the application's path?

+1  A: 
NSLog( @"%@" , [[NSBundle mainBundle] bundlePath] );
drawnonward
Thanks but how does one find this in the apple documentation?
TheLearner
Read +mainBundle (http://bit.ly/cydGZx) and -bundlePath (http://bit.ly/94Fefe).
Cory Kilger