D i modify calling iphone software? [closed] - iphone

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
my question is:
would be feasible to modify the software to get calls? I intend to capture the action of the call attempt to operate accordingly.
Sorry for not being more explicit

#user449303
You cant modify the default apps comes with iPhone.
but you can handle the event like missed call,call ended,call failed etc..

It is not possible to manipulate the method of making or receiving of phone calls on the iphone (using publically available APIs). An app can initiate a phone call but the phone call will be made using the Apple call application.

Related

Can I automatically launch my application without user tapping local Notification in iOS? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
I want to be able to launch the app when a timer, which the user sets, goes to zero. Will this keep my app from being accepted in the the app store?
Example: The user sets a timer and exits the app/turns off the app. When that timer hits zero the app launches and performs a function.
Officially, it is not possible
for jailbroken device,
follow
http://n8henrie.com/2012/07/scheduling-ios-apps/
there is some talk about it

Is there an iOS-accessible API to detect a drunk person? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
Is it possible to detect if a person is drunk via image recognition or face-scanning? If it's possible, is there an API available for that?
You could try to code again the accelerometer. Maybe a drunk person is unable to hold the phone still??
http://www.technobuffalo.com/2011/05/15/introduction-to-ios-development-playing-with-the-accelerometer/
This is a RESTful face recognition api and maybe what you want http://www.faceplusplus.com . But I don't know whether it can detect drunk face.
OpenCV! Haartraining!
FYI: I recommend you to work haartraining with something different concurrently because you have to wait so many days during training (it would possibly take one week). I typically experimented as 1. run haartraining on Friday 2. forget about it completely 3. see results on next Friday 4. run another haartraining (loop).

Download and launch another app within the base app- iphone [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I wish to develop an app which based on a barcode downloads another set of code/app and executes the required action. The base app doesn't have the flow of the action coded but just the identification parameter and inputs on which app to download.
Is this possible?
It depends on whether you want app store approval and what the 'code' is. The review guidelines say, "2.7 Apps that download code in any way or form will be rejected."
On the other hand, a web page often has Javascript code associated with it and a web view can execute that.
It depends on some more details and whether you're intending to use the store.

Good practices for building web application that can later have and mobile(Android/iPhone) version [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
can you advice me a book or something else containing good practices about how to build/structure a web application in a way that will be easy to extend it with an Android/iPhone version later.
I am currently trying to get into Django so it will be nice if the practices are related to it, but every hint will be appreciated.
I would suggest just doing Model-View-Controller. If you put all your logic into your controller (which you should), going from a web based application to a mobile one is just writing a new view.

Transfer photos from one application to another [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
can anyone give me sample code to transfer photos from one iphone to another using bluetooth
Your best bet would to use GameKit, which greatly simplifies connecting multiple devices over Bluetooth & transfering data. I can't remember having seen an Apple sample which does that, but it certainly would be possible. This is exactly what GameKit was intended for, peer-to-peer connectivity, not only limited to gaming.
You'll probably have to split the data of the image and send little chunks to the other device, which can reassemble the chunks to form the original file once finished.
http://developer.apple.com/iphone/library/documentation/NetworkingInternet/Conceptual/GameKit_Guide/Introduction/Introduction.html