i want send a message in background without composer view controller,i have Tried to bellow this code
BOOL success = [[CTMessageCenter sharedMessageCenter] sendSMSWithText:@"XYZ" serviceCenter:nil toAddress:@"+9199007300"];
if(success)
{
NSLog(@"Message Sent = %d",success);
}
else
{
NSLog(@"Message not sent = %d",success);
}
This code always prints "Message not sent = 0".Please Can anyone help me ?