0

重複の可能性:
iPhone で電話をかけ、ユーザーをアプリに戻しますか? (UIWebViewがそれを行います)

テーブルビューセルにUITableViewがあり、電話番号があります。セルを選択した後、電話をかけたいと思い、両方の側(ダイヤラーとレシーバー)からの通話を切断した後、アプリビューに戻りたい.どのように可能か.助けてください.ありがとうございます。

4

2 に答える 2

1

試す

-(void)makeACall:(NSString *)strContactNumber
{   
    UIWebView *webView = [[UIWebView alloc] init];    
    NSString *ph_no = [NSString stringWithFormat:@"tel:%@",strContactNumber];    
    [webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:ph_no]]];
}
于 2013-01-09T06:14:40.607 に答える
0

これを試して:

NSString *deviceType = [UIDevice currentDevice].model;
        if([deviceType isEqualToString:@"iPhone"])
        {
            NSString *phoneNumber = [@"tel://" stringByAppendingString:@"8437327307"];
            [[UIApplication sharedApplication] openURL:[NSURL URLWithString:phoneNumber]];
        }
        else
        {
            UIAlertView *device = [[UIAlertView alloc] initWithTitle:@"ipod" message:@"Can't Call from this device" delegate:nil cancelButtonTitle:@"Ok" otherButtonTitles:nil, nil];
            [device show];
            [device release];
        }
于 2013-01-09T06:11:15.240 に答える