Can I launch an iPhone application from a text message?

This question:

Launch iPhone app from email via email

suggests that you can launch a specific iPhone application from a link in an email. Is it possible to include in a text message a link to launch an application of this type so that the reader can click on it (and start the application) in the same way as they can call a phone number in a text message?

+3
source share
2 answers

Read the section on iOS Application Programming Guide Implementing Custom URL Schemas .

  • Info.plist( " " ) URL types.

  • , , URL identifier - com.yourcompany.product.

  • 0 URL Schemes

  • Set the value on that row to something unique. Maybe your app name (no spaces, just letters).

  • Implement the application:handleOpenURL: , URL-.

+7

? URL 5 . .

+1

Source: https://habr.com/ru/post/1771020/


All Articles