Programmatically remove call waiting beep on an iPhone? - iphone

Is it possible on an iPhone to programmatically remove the call waiting beep that happens if the iPhone is already on a call with another party and a third party calls the iPhone?
This would be for iOS 6 and iOS 7.
Thanks very much for your help.

No, it isn't. Your app doesn't have the ability to modify phone calls in progress, as phone calls are outside of the app's sandbox.

Related

I want an iOS app which communicates to another app in PC/MAC via USB

I want an iOS app which communicates to another app in PC/MAC via USB.,Is there any way to do it without jailbreaking the iOS device and without applying to Apple's MFI Program ?
I don't intend to submit the application to Appstore.
Thanks for any help in advance.
You need to use the External Accessory Framework

is it possible phone-calling in ipad?

Recent iPads are having provision to insert sim card in that. So with latest iOS SDK, is it possible to call from my application. I know that in-app call is possible from iPhone. But how about iPad? is any api for that? or any app already in market? any tutorials or links .
thanks
The 3G ipad doesn't support native phone calls. The 3G is just for data transfer. However there's nothing stopping you from creating an app similar to the way Skype and other voice over ip apps work, that allow you to make phone calls from the ipad. Line2 is an example of such an app.
It's not possible. The iPad was not created to make phone calls, and there is no native Phone app (like what the iPhone has).
The SIM card slot is to allow internet use via 3G.

Can Iphone Apps change std. sms app?

Is it possible to make an App for the Iphone that apply changes to the Original Iphone SMS app?
for instance add a new button or play an animation when an sms is sent?
Not in any way that's supported by Apple. It's likely to be possible if your phone is jailbroken, but other than that you're out of luck.
No, apps are sandboxed so they can't access other apps on the phone unless there is support in the SDK for it (like accessing the camera roll or calendar). You can do it with a jailbroken device though.

how can i control the Phone call?

I am new to iphone. now i am doing one baby monitoring project. My part is controlling sound like if the baby was crying that automatically call to that baby's mom mobile number.
So here i did all works, but if baby was crying that will call automatically from application to baby's mom mobile number.
But after reach the mobile number the application was end. so how can i rectify this problem. that means if suppose she stop the call it will goes to the application.
Iphone did not allow multitasking before version 4.x of the iOS. This means that when the phone app launches your application is closed. So it will not be possible pre iOS 4.x. For iOS 4.x You can keep your application running but there is still no way to bring your application to the foreground automatically. What you can do (in any version) is present the user with a notification to take you back to your app but the user has to opt in and touch the notification.

Make a call from iPhone application without quitting

Is it possible to make a call from application with out quitting application in iOS 4?
You will have to have your application remember its state. That way it can be resumed when launched again. Even with the new multitasking your suspended apps may be forcibly quit if the device needs more memory.
Apple has a guide named "Supporting Multitasking In Your Applications" which you should be able to locate.
Related SO: Does iOS 4 make “Real Multitasking” available to 3rd party developers?
However, you may not replicate core OS functionality so this is the only way to get what you want.