作者:可爱de小蜗牛 | 来源:互联网 | 2023-08-29 11:51
IamtryingtosendsmsprogrammaticallyusingprivateAPI.Myphoneisnotjailbroken.我正在尝试使用私有AP
I am trying to send sms programmatically using private API. My phone is not jailbroken.
我正在尝试使用私有API以编程方式发送sms。我的手机没有越狱。
BOOL success = [[CTMessageCenter sharedMessageCenter] sendSMSWithText:@"test 1234..." serviceCenter:nil toAddress:@"0777888888"];
if(success){
NSLog(@"Message SENT");
}else{
NSLog(@"Message not SENT");
}
This code always prints "Message not SENT". Can anyone help me ?
此代码总是打印“未发送的消息”。谁能帮帮我吗?
2 个解决方案