How can I run one app from another app in iphone?

前端 未结 4 1277
甜味超标
甜味超标 2021-01-29 09:06

On some app , I see when one link touched , use safari for open link and quit from current app. I want use from this feature for run messages app from other app. Can I do this?

4条回答
  •  心在旅途
    2021-01-29 09:49

    I do it , I write sms in mailto place and write phone number in front of it. and app work correct,

       [[UIApplication sharedApplication] openURL: [NSURL URLWithString: @"sms:09120000000"]];
    

提交回复
热议问题