up vote 3 down vote favorite
3
share [g+] share [fb]

I want to send the AppID as a http URL parameter for all webservice requests, but I do not know how to get the AppID on iPhone programmatically. Does Apple provide any API to obtain the AppID?

Somebody please help.

~Neeraj

link|improve this question

33% accept rate
feedback

1 Answer

up vote 5 down vote accepted

I think it may be possible to access it in a different way, but you should be able to read it from your info.plist:

NSString* appID = [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleIdentifier"];
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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