I'm trying to make an application which shows the bundle ID of installed applications on the iOS device using Objective-C.
UILabel *bundleIdentifier = [[UILabel alloc]initWithFrame:CGRectMake(10,10,200,50)];
bundleIdentifier.text = [[NSBundle mainBundle] bundleIdentifier];
[self.view addSubview:bundleIdentifier];
By using this code in the application's code, I can display the bundle ID of the application I'm creating...
How can I get the bundle id of other apps to display?
In the header SBApplication.h I found -(NSString*)bundleIdentifier;
Is this useful?
Thanks!