Is it possible to go back automatically into the application after calling a Number?

别等时光非礼了梦想. 提交于 2019-12-06 16:06:04
        this.btnCall.TouchUpInside+= delegate {

        UIWebView web = new UIWebView();
            NSUrl url = new NSUrl("tel:07777777777");

        web.LoadRequest(new NSUrlRequest(url));


        };

Works fine, but WebView ask in a (Alert) if you really want to dial the number or not..

You Can call or Cancel.

When the call is finished you will get back to the View!

regards MemoDreamer

No. You are passing control to an external application (the phone App), and there is currently no way to tell it to switch back to your app.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!