zoukankan      html  css  js  c++  java
  • 越狱手机发送短信

    http://stackoverflow.com/questions/19175209/sending-sms-using-ctmessagecenter-ios-7

    下面的代码在IOS7上面无效,经过一番搜索,解决方案如下。亲测试有效。

    I am trying to send sms programmatically using private API. My phone is not jailbroken.

    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 ?

    I guess, you have to write the telephone number in E.123 international notation. So add plus sign and country code. For a phone number is USA replace the leading 0 with +1:

    [[CTMessageCenter sharedMessageCenter] sendSMSWithText:@"test 1234..." serviceCenter:nil toAddress:@"+1777888888"];

    For a phone number is Sri Lanka use the appropriate country code +94.

    UPDATE

    I've tested old working iOS 5 code under iOS 7... sendSMSWithText:serviceCenter:toAddress:returns NO. The same while using the new method sendSMSWithText:serviceCenter:toAddress:withMoreToFollow:

    Panagiotis' suggestion seems correct :-/

    UPDATE 2

    http://stackoverflow.com/a/20425853/2270880 gives the right answer.

    Under iOS 7 the app needs two entitlements com.apple.CommCenter.Messages-send andcom.apple.coretelephony.Identity.get. Adding additional entitlements via file appname.entitlements (and set in target's Build Settings > All > Code Signing > Code Signing Entitlements) give you the error

    The entitlements specified in your applications Code Signing Entitlements file do not match those specified in your provisioning profile.
    (0xE8008016).

    on non-jailbroken devices.

  • 相关阅读:
    Visual Studio 2015安装后没有C++ WIN32 console
    ORACLE SEQUENCE用法
    adoconnection断线重连
    海康威视网络摄像机 SDK二次开发(JAVA)(1-DEMO测试)
    FFmpeg,H.264,Directshow,和opencv及视频编码与封装格式
    DirectShow 视频采集
    CoCreateInstance运行原理
    二叉树中序线索化
    Xvid-Delphi
    风冷冷藏库的化霜周期和化霜时间是多长?
  • 原文地址:https://www.cnblogs.com/doudouyoutang/p/4391221.html
Copyright © 2011-2022 走看看