Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Detect incoming call iphone 5

I have a question regarding the possibility of creating a winforms application in C#, which is able to detect incoming calls on an iphone.

Here is the scenario:

  • the iphone is connected to the computer via a usb cable.
  • whenever the phone rings I would like to be able to do the following:
    1. Retrive the phone number.
    2. Use the phone number in the winforms application, to search xml filer.
    3. Answer the phone via the application and play an automated voice message.

Is this even possible in C#? If so how could this be done and are there any libraries designed for interacting with an iphone using C#??

Thanks and regards.

Anders

like image 374
user2062837 Avatar asked Feb 11 '13 21:02

user2062837


1 Answers

There are no SDK's that allow you to develop .NET apps that interact externally with the iPhone.

If you want to write an iPhone app, but are intimidated by the learning curve you could check out MonoTouch. It allows you to write iPhone\Android apps using C#.

like image 62
jeuton Avatar answered Oct 07 '22 12:10

jeuton