I read some reference about how to make a call programmatically on the iPhone, so I put this in my code :
UIApplication *app = [UIApplication sharedApplication];
NSString *urlString = [NSString stringWithFormat:@"tel:0225225657"];
NSURL *url = [NSURL URLWithString:urlString];
[app openURL:url];
is that correct? If yes, how can I know that my app has dialed that number while i run this in the simulator?