Is it possible to launch any arbitrary iPhone application from within another app?, For example in my application if I want the user to push a button an
Try the following code will help you to Launch an application from your application
Note: Replace the name fantacy with actual application name
NSString *mystr=[[NSString alloc] initWithFormat:@"fantacy://location?id=1"];
NSURL *myurl=[[NSURL alloc] initWithString:mystr];
[[UIApplication sharedApplication] openURL:myurl];