These 2 lines should dial from the device and, as far as I know, ignored in simulator. If dialed the app delegate receive handle URL call (don't need to implement) then applicationWillTerminate.
After that app exits successfully and control hands to the Phone app (which is missing in simulator)
------------------------------------------------
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:[NSString stringWithFormat:@"tel://%@",phoneNumber]]];
------------------------------------------------
Radif,