-1

Possible Duplicate:
Can I access the text of my SMS messages using the iPhone SDK?

EDITED QUESTION I am really new to Ios environment, and I wanted to know if there is a way to make ip calls or something like skype.

Till now i understood how to make voice calls. But I want to stream live data. can any one give me any kind of lead?

Community
  • 1
  • 1
Prajwal Udupa
  • 860
  • 5
  • 28
  • 1
    You are welcome on StackOverflow but please be aware of methodologies how this community works. Please read [FAQs](http://stackoverflow.com/faq) before asking a question. – rohan-patel Jan 08 '13 at 07:08
  • yes, I have seen that but that is 3 years old now. – Prajwal Udupa Jan 08 '13 at 07:24
  • So what difference does it make? You should check Apple documents and put some efforts before asking a question. – rohan-patel Jan 08 '13 at 07:41
  • its not possible to fetch the call or sms history in iOS device..but it is possible to send email [check for more details](http://stackoverflow.com/questions/9822031/call-history-sms-history-email-history-in-ios) – Rushabh Jan 08 '13 at 07:10
  • Voting to close as "Not a real question" because you are asking three different questions. – Emil Vikström Jan 09 '13 at 04:55

1 Answers1

2

You can send a text or an email message from your app, but you can't access existing ones. The reason for that limitation is security (so a malicious app can't steal your personal information/passwords/etc from your mailbox). See this page for details.

You can also make a call by opening a special URL within your app. See, for example, this SO answer. Note that this will open the system phone app. You still can't access the call history though, for the same reasons I already mentioned

Community
  • 1
  • 1
TotoroTotoro
  • 17,524
  • 4
  • 45
  • 76
  • what about calls? I wanted to know the limitations of a developer. – Prajwal Udupa Jan 08 '13 at 07:27
  • You can make a call by opening a special URL within your app. See, for example, this SO answer: http://stackoverflow.com/questions/6323171/making-a-phone-call-in-an-ios-application. Note that this will open the system phone app. You still can't access the call history though, for the same reasons I already mentioned. – TotoroTotoro Jan 08 '13 at 07:45
  • Also, you can have tappable phone number hyperlinks in your app, e.g. in a UILabel or UITextArea. – TotoroTotoro Jan 08 '13 at 07:47
  • Thanks i finally implemented this as you had suggested !! – Prajwal Udupa Feb 27 '13 at 07:10