使用Swift在iOS中发送短信

首先,我真的很惊讶这不是重复的,因为在Objective-C中有大量的堆栈溢出问题可以解决这个问题,但是我还没有看到使用Swift的好答案。

我正在寻找的是Swift中的代码段,该代码段将任意字符串作为文本消息的正文发送到给定的电话号码。从本质上讲,我希望像这样从苹果的官方文档,但是在斯威夫特,而不是Objective-

C的。

我认为这并不是太困难,因为可以在Android中只需几行代码即可完成。

编辑:我正在寻找的是5-20行Swift代码,我不同意这个范围太广。在Java(适用于Android)中,解决方案如下所示:

package com.company.appname;

import android.app.Activity;

import android.telephony.SmsManager;

public class MainActivity extends Activity {

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

public static final mPhoneNumber = "1111111111";

public static final mMessage = "hello phone";

SmsManager.getDefault().sendTextMessage(mPhoneNumber, null, mMessage, null, null);

}

}

现在这是android解决方案,只有11行。Java往往比Swift更冗长,因此我怀疑我的要求是“太宽泛了”,很可能是我不知道如何使用Objective-C

MessageComposer对象,因为我链接的文档关于Swift中的用法,上述内容尚不清楚。

回答:

不知道您是否真的得到了答案。我也遇到了类似的情况,遇到了这个解决方案并使它起作用。

import UIKit

import MessageUI

class ViewController: UIViewController, MFMessageComposeViewControllerDelegate {

@IBOutlet weak var phoneNumber: UITextField!

override func viewDidLoad() {

super.viewDidLoad()

}

@IBAction func sendText(sender: UIButton) {

if (MFMessageComposeViewController.canSendText()) {

let controller = MFMessageComposeViewController()

controller.body = "Message Body"

controller.recipients = [phoneNumber.text]

controller.messageComposeDelegate = self

self.presentViewController(controller, animated: true, completion: nil)

}

}

func messageComposeViewController(controller: MFMessageComposeViewController!, didFinishWithResult result: MessageComposeResult) {

//... handle sms screen actions

self.dismissViewControllerAnimated(true, completion: nil)

}

override func viewWillDisappear(animated: Bool) {

self.navigationController?.navigationBarHidden = false

}

}

以上是 使用Swift在iOS中发送短信 的全部内容, 来源链接: utcz.com/qa/399669.html

回到顶部