gpt4 book ai didi

ios - SMS 打开消息

转载 作者:行者123 更新时间:2023-11-28 22:31:34 25 4
gpt4 key购买 nike

我创建了一个使用 SMS 的应用程序,在用户单击 SMS 按钮后,它会打开我的号码,但没有消息(这是他们的工作)。但是,当它加载短信页面时,它会将光标设置在收件人不在消息所在的位置。为了更好地解释这一点,在短信加载后,如果他们只是开始输入,他们将添加另一个人来发送消息,而不是输入消息。例如,如果我想在启动时加载到我的 UIPicker 上的特定行,我会:

[picker selectRow:3 inComponent:0 animated:NO];

短信加载:

- (IBAction)sms {
MFMessageComposeViewController *textComposer = [[MFMessageComposeViewController alloc] init];
[textComposer setMessageComposeDelegate:self];
if ([MFMessageComposeViewController canSendText]) {
[textComposer setRecipients:[NSArray arrayWithObjects: @"support@nicmacengineering.com", nil]];
[textComposer setBody:@""];
[self presentViewController:textComposer animated:YES completion:NULL];
} else {
NSLog(@"Can't Open Text");
}
}

- (void)messageComposeViewController:(MFMessageComposeViewController *)controller didFinishWithResult:(MessageComposeResult)result
{
switch (result) {
case MessageComposeResultCancelled:
NSLog(@"Cancelled");
break;
case MessageComposeResultFailed:
break;
case MessageComposeResultSent:
break;
default:
break;
}
[self dismissViewControllerAnimated:YES completion:NULL];
}

最佳答案

首先,你的问题很难理解。这是我的印象:

Can I set the cursor to the message field by default in an SMS controller?

答案是:

没有。

因为它是一个 Apple 框架,没有公共(public)方法来切换字段 ( here's the class reference )。

因此,您将无法自动设置光标的位置。

关于ios - SMS 打开消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17287709/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com