I wish to implement sending pre-defined sms templates to missed call numbers automatically on iPhone. How can I do this?
There is no support for this in the official SDK.
Any apps that do this will not be accepted into the App Store.
Your only option would be to jailbreak the phone and do it there.
Related
I am developing an application in iPhone which will send ordinary sms to users at pre stated date and time. so I want to know is it possible in iPhone that the sms is sent to receivers automatically when time comes. also if you know some suggestions then please give me more suggestions so I can make it run successfully
Thanks
You can do one thing. You can make web service in .net or in php. Or there are third party api for sending sms to other users like way2sms.com. these are just for .net and in php.
with jailbroken phones this is feasible.. I don't know the detail though..
anyway, with stock iphone it isnt possible
I'm developing a call program in a iOS application. This is intended for personal use, not for the App store. I would like to control iPhone app to call someone, receive calls and disconect calls whenever I need. Is it possible for me to control iPhone calls? If it's possible, what api can I use? please name some, thank you very much!
No, this is not possible via the iOS SDK.
(I don't know if there are any solutions for jailbroken devices.)
I have 10 messages in my iPhone.I would ilke to get those messages into my iPhone app.So kindly tell me how to do this.
Thanks and Regards,
Srinu Ambati
It's not possible using the official SDK.
For reasons of security and privacy, I think it is not possible to read SMS from iPhone with a third party application. However if you want to save your SMS, it seems that a solution exists with this tutorial
Apple restricts this behavior because of privacy politics. All messages are stored in /private/var/mobile/Library/SMS/sms.db file and you can't get access to it without jailbreak.
I am developing apps for both Android and iPhone, and am looking for how I can push notifications to both (if you only have an answer for one, that's ok, I'm sure someone has an answer for the other).
For example, if I'm having a special on something and want to notify people so it sort of dings and a message pops up (I have a Groupon app that does that) how can I accomplish this? And do I have to reprogram each time, or can I do it through an RSS or something else?
For Android 2.2+ use C2DM. Apple also has a proprietary push notification service. In both cases you need to register with the company to use the system. Also in both cases you will need a web server able to communicate to Google and Apple.
If you don't want to have to support an entire server framework for communicating with both iOS and Android devices, take a look at UrbanAirship. It's a dirt-cheap service that allows you to push both plain- and rich- text messages to iOS, Android, and BlackBerry.
Gravy: It also has mechanisms for In-App Purchasing, and statistics tracking.
Maybe PushOver can be a solution https://pushover.net/ but there is probably other web services like that !
Is there a way to know the email addresses to which the user has linked his iPhone to from within an iPhone application?
Yes, you can use the AccountEmailAddresses function of ABGetMe for iOS. Make sure to read and understand the Limitations section of the README.