无法使用url架构启动msn

时间:2011-08-08 12:24:22

标签: ios4 url-scheme

我想通过我的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方案是什么。

0 个答案:

没有答案