Android 辛奇能打911这样的紧急电话吗?

Android 辛奇能打911这样的紧急电话吗?,android,ios,sinch,Android,Ios,Sinch,sinch app to Phone Line服务能否用于拨打911紧急服务(使用其iOS和Android SDK) iOS MainViewController上的代码段。我设法调用callPhoneNumber方法,使用sinch调用常规PSTN线路。但是,我无法测试拨打911的电话,因为我不想挂上真正的紧急电话线 如果目标电话号码是911,如何验证此代码是否有效 谢谢 @implementation MainViewController - (id<SINClient>)cl

sinch app to Phone Line服务能否用于拨打911紧急服务(使用其iOS和Android SDK)

iOS MainViewController上的代码段。我设法调用callPhoneNumber方法,使用sinch调用常规PSTN线路。但是,我无法测试拨打911的电话,因为我不想挂上真正的紧急电话线

如果目标电话号码是911,如何验证此代码是否有效

谢谢

@implementation MainViewController

- (id<SINClient>)client {
    return [(AppDelegate *)[[UIApplication sharedApplication] delegate] client];
}

- (IBAction)call:(id)sender {
    if ([self.destination.text length] > 0 && [self.client isStarted]) {
    id<SINCall> call = [self.client.callClient callPhoneNumber:self.destination.text];
    [self performSegueWithIdentifier:@"callView" sender:call];
}
@implementation MainViewController
-(id)客户{
返回[(AppDelegate*)[[UIApplication sharedApplication]委托]客户端];
}
-(iAction)呼叫:(id)发件人{
如果([self.destination.text length]>0&&[self.client isStarted]){
id call=[self.client.callClient callPhoneNumber:self.destination.text];
[self-PerformsgueWithIdentifier:@“callView”发件人:call];
}

Sinch不支持拨打紧急电话号码。作为一般指导原则,使用Sinch拨打电话时,应根据E.164号码格式()建议指定电话号码,并应在电话号码前加“+”。

请提供您为解决此问题而尝试编写的代码。