How to make a call or send a sms on iOS: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
No edit summary
(Add "cleanup" tag)
Line 1: Line 1:
{{Cleanup | reason=Auto-imported from ExpressionEngine.}}
h1. How to start a call from your application:
h1. How to start a call from your application:



Revision as of 16:00, 3 March 2015

This article may require cleanup to meet the Qt Wiki's quality standards. Reason: Auto-imported from ExpressionEngine.
Please improve this article if you can. Remove the {{cleanup}} tag and add this page to Updated pages list after it's clean.

h1. How to start a call from your application:

On iOS, there are two possibilities to start a phone call:

  1. Start a call directly
QDesktopServices::openUrl(QUrl("tel://+123456789"));<code>

# Prompt the user before making the call

QDesktopServices::openUrl(QUrl("telprompt://+123456789"));

= How to start a FaceTime call:

QDesktopServices::openUrl(QUrl("facetime://+123456789"));<code> =

= How to send a SMS:

QDesktopServices::openUrl(QUrl("sms://+123456789")); =

Setting the SMS content through this method cannot be done. This would require to use iOS API directly through Objective-C++