iPhone アプリから MSN を起動したいと考えています。私はURLシーマを使用しています-
BOOL msn = [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"msnim://"]];
if (msn) {
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"msnim://"]];
}
else {
UIAlertView * errorAlert = [[UIAlertView alloc] initWithTitle: @"MSN not Installed" message: nil delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];
[errorAlert show];
[errorAlert release];
しかし、それは機能していません。MSN に間違ったカスタム URL を使用していますか???? はいの場合、MSN の URL スキームは何ですか。