Thanks, that's what I was after.
However, when trying it out, I get errors based on the URL:
Code:
UIApplication* theApp = [UIApplication sharedApplication];
[theApp openURL:[NSURL URLWithString:@"mailto:test@example.com"]];
This returns the error
"Unsupported URL
The URL wasn't loaded mailto:test@example.com"
Code:
UIApplication* theApp = [UIApplication sharedApplication];
[theApp openURL:[NSURL URLWithString:@"http://www.google.com"]];
Here, my application minimizes (zooms out), screen goes black, then the simulator shuts down.
Is this normal behavior in the Simulator?