切换UISwitch时发送短信

时间:2015-01-15 16:01:42

标签: ios swift

当使用Swift切换UISwitch时,是否可以将自动文本消息发送到预设号码,以便在应用程序被禁用时可以提醒用户?

1 个答案:

答案 0 :(得分:1)

简答

否。

长答案

不幸的是,事实并非如此。不是自动的,但你可以:

  1. 以所需频率安排Local Notification
  2. 当用户点击通知时,请使用MessageUIMFMessageComposeViewController
  3. 警告:不要忘记检查设备MFMessageComposeViewController.canSendText()

    要使用MFMessageComposeViewController发送短信,您只需:

    您可能还希望看到question filled with great answers regarding sending text messages programatically