Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7087625
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T07:41:49+00:00 2026-05-28T07:41:49+00:00

With the SDK / Cocoa Touch, is it feasible to make an app that

  • 0

With the SDK / Cocoa Touch, is it feasible to make an app that will SMS automatically?
My objective isn’t to SPAM anyone.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T07:41:50+00:00Added an answer on May 28, 2026 at 7:41 am

    Three is a way to pre-build an SMS using MFMessageComposeViewController. The only issue with this method is that a modal view will be shown to the user to accept the SMS (like the window that sends an e-mail by the default way). There is no way to send a SMS in “silent mode” without jailbreak.

    {    
    ...
    [self sendSMS:@"_SMS_TEXT_" recipientList:[NSArray arrayWithObjects:@"PHONE_NUMBER", nil]];
    ...
    }
    
    - (void)sendSMS:(NSString *)bodyOfMessage recipientList:(NSArray *)recipients
    {
        MFMessageComposeViewController *controller = [[[MFMessageComposeViewController alloc] init] autorelease];
        if([MFMessageComposeViewController canSendText])
        {
            controller.body = bodyOfMessage;    
            controller.recipients = recipients;
            controller.messageComposeDelegate = self;
            [self presentModalViewController:controller animated:YES];
        }    
    }
    
    - (void)messageComposeViewController:(MFMessageComposeViewController *)controller didFinishWithResult:(MessageComposeResult)result
    {
        [self dismissModalViewControllerAnimated:YES];
    
        if (result == MessageComposeResultCancelled)
            NSLog(@"Message cancelled")
        else if (result == MessageComposeResultSent)
            NSLog(@"Message sent")  
        else 
            NSLog(@"Message failed")  
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Anyone have any idea about CASlotProxy Class in Cocoa (iOS SDK)? I found it
I'm learning Cocoa/Objective-C/iPhone SDK, and as a simple project to apply what I've learned,
I see many Objective-C/Cocoa SDK apis where you can specify a target and an
When working with Cocoa/Cocoa-Touch and the iPhone SDK, a typical convention is to build
I am about to create a Cocoa app and I want to ensure that
I've got a Cocoa command-line app which is built to target 10.5 SDK. In
I'm trying to create a Cocoa app that needs to target Mac OS X
In Cocoa, specifically the iPhone SDK, the opaque property is described as: If opaque,
Preface : I am new to the iPhone SDK, Obj-C, Interface Builder and Cocoa.
There's Quicktime SDK for Windows, but any application that uses it needs quicktime runtime

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.