Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to write an application that will block incoming and outcoming phone calls? Or is the iPhone locked down too much? Thanks!

share|improve this question
7  
You can make your application depend on iPhone 4, and instruct your users to hold the phone in the lower-left corner. Works like a charm. – Adrian Petrescu Jul 20 '10 at 3:19

4 Answers

up vote 17 down vote accepted

Anything that modifies a user's ability to make or receive phone calls is going to run afoul of Apple's basic approach to third-party apps. There are a lot of things that are questionable and you might get away with. Blocking calls is clearly forbidden.

share|improve this answer
1  
Thank you. That's what i was afraid of. – Elliot May 19 '09 at 18:23
17  
Why would you be afraid of that? What I would be afraid of is a software that prevents me from receiving calls. – Martin Cote May 19 '09 at 18:27
Could be that he accepted a project request from a client for something that blocks calls, not knowing the limitations. Bad call to not research before you leap though. Sorry – Organiccat May 19 '09 at 19:14
3  
If all you want is to not hear some incoming calls, just add a 'silent' ringtone (there's plenty of instructions about how to add your own ringtones) and then assign that ringtone to the offending caller in your contacts list. – Michael Kohne Jul 9 '09 at 11:27
5  
I would LOVE to be able to block specific phone numbers. Its my phone. Its my minutes. I pay the bill. When you get collections calling about accounts from some other person who either lied and gave our your number or previously had your number - you'd want that ability too. Bottom line is that I am paying and I should have the final say as to who can use my minutes up and who cant. – Electric Automation Dec 25 '09 at 5:59
show 6 more comments

A number of events will potentially interrupt an application - incoming call, SMS message or calendar alert. If the user ignores the interruption your application will continue running. If not, it will terminate.

See Apple docs for more details.

share|improve this answer

Apps cannot block phone calls. The user can turn on Airplane Mode in the settings, though.

share|improve this answer

An app has not access to the phone feature, and has no way to block a call.
The alternative is to wait for Apple to offer that feature in the future.

In the meantime, you can

  • Ask your provider - some providers do that
  • Create a custom ring tone (silent) to be associated to some number (no ring).
share|improve this answer

protected by Michael Myers Jul 20 '10 at 3:02

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.