up vote 0 down vote favorite
share [g+] share [fb]

I've heard it mentioned elsewhere, one cannot programmattically hook into the phone call area of an iPhone using the current SDK. I'm looking to learn iPhone development and Obj C, with the end goal of creating a call timer app that runs in the background and alerts the user when a call has gone on too long.

Is it even possible to hook into methods liek that?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

No. Your app will be interrupted when the user receives a call, and your code will not be allowed to run while the user is on the call. Additionally, there are no background apps allowed for the iphone. The best you can get is push notification, but you can't create a daemon or anything like that.

This information is provided in the iPhone Application Programming Guide

link|improve this answer
Thanks for spedy reply. Bit of a bummer - I was wondering why there were no call timing apps available :( Perhaps there is another way to approach it? – Dominic Bou-Samra Oct 5 '09 at 5:46
Yeah, unfortunately this is the design decision Apple went with in order to get some extra levels of security. They were probably worried that someone would write an app that listened in on calls or something to that effect. Welcome to the restricted world of iPhone development. You can do a lot with the iPhone, but you learn quickly there are walls everywhere :) – Brandon Bodnar Oct 5 '09 at 5:49
feedback

With version 4 you can now multitask to some degree.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.