我想通过我的iPhone应用程序启动MSN。 我正在使用url shema -
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];
但它不起作用。 我使用错误的自定义URL为MSN ???? 如果是,那么MSN的url方案是什么。