iOS - Detecting calls, cancel them an then do something [closed] - ios

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
Is it possible for one to make an app which listens for call events, if a number is equal to something, then cancel the call and do other stuff?
EDIT:
Some people are asking why I would wanna do this when it's such a simple question that, I'm having difficulty in understanding the negative feedback. As the question states, I just wanted to capture the call events and if the number dialed was equal to a specific number, than the call wouldn't proceed and I would do something else instead. The question is not too broad (unless I have to place the whole requirements engineering of the app) neither a complicated one. Just a simple question of "is this possible in iOS?".
As already answered by some helpful people (fortunately), it's not possible.

No, it's not possible, especially if you want your app to be accepted into the App Store. You can detect incoming and outgoing calls using Core Telephony, but you cannot get the phone number. Plus, certain usage of the Core Telephony framework means rejection from the App Store, if that's a concern.

Related

Can I customize the message shown at the bottom while multi tasking in iOS? [duplicate]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I would like to customise App Suggestions in iOS programatically.
It usually says Good Morning and my app name.
Is it possible that I configure it to say something other than "good morning"?
Can I control when and where it appears?
I couldn't find much information in this regard.
Thanks,
Elstine
You can't modify App Suggestions from an application, as that content is outside of the scope of an app's sandbox.
"Good Morning" appears there because the App Suggestion feature detected that you usually use a particular app in the morning and greets you with an according message. Those strings come directly from this feature and are not app-dependent; therefore, they can't be changed as of now.

How to make iOS chat instant (real time)? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
a part of my app involves building a IM group chat. As right now, I have the whole chat working. However, the problem is that obviously is not instant. It updates in ViewDidLoad(). I know that making it instant is the hardest part in making an IM chat. I'm currently using Parse, and I initially thought of using push notifications to update the page, but Googling a little more I found out that people were saying that there are a few cons in doing that such as the fact that the user would get a crazy number of push notifications.
Do you have any idea of how could I approach this problem or how I could get my chat to be in real time?
Thanks in advance for the help.
There are 3rd party services like PubNub (https://www.pubnub.com/) and Pusher (https://pusher.com/) that offer realtime events.

Want to setup a voice-to-voice communication service/group call service on rails. Where should I start? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I already have a fair bit of experience making rails applications, but I have never really tried to make an application with the use of a microphone. I don’t need to have video call, only voice, but I would want to control how many people could connect to a single call. Also I would like it to not have to do with actual phone numbers, but have a completely separate service like skype. Any help would be appreciated, Thanks!
This is not a trivial rails app, but just from googling I found Adhearsion
Check it out: http://www.adhearsion.com/
Adhearsion is a full-featured framework for the development of
applications which interact with or control voice communications.

Can we make an app that uses the camera and make a call at the same time? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I know I can't record a video while I'm on my phone in general and that if the capability existed or could exist that it would be a feature/option.
Are there apps that do this and if it can be done can someone help me get started code wise?
EDIT
Because there seems to be some confusion as to what I'm asking, I will clarify:
Are we able to launch phone calls using the iPhone regular calling feature and use the iPhone regular movie creating feature (the video camera) at the same time in an APP - as we know it can't be done generally.
Yes and no. You can't use Apple's built-in camera and phone to do it. But, obviously there are many apps (i.e. Skype and others) that use both camera and voice features in their VoIP implementations. So, it would take a custom camera and VoIP to accomplish this.

Would I get away with releasing an unfinished app? [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
So I'm going to do an app. It will have about 100 recipes, and so far I've only done 4. I need to have it submitted to the App Store tomorrow.
My question is, if I'm not done by then, could I get away with just polishing what I have and then submitting it? Would Apple or my customers hate my client?
It is very rare in software development to release an application without a few known defects, so long as those defects are not critical to the functionality of the application itself. This is why versioned releases exist. That being said, unless you have a clear understanding of what your client wants, via a customer statement, it may be hard to determine whether or not your client will respond in a positive manner.
If you're down to a crunch, polish up what you've got, make sure it works, and cross your fingers. Your other option would be to request pushing back the release date.
4 out of a 100 probably wont cut it though. :P

Resources