21

I want to develop a VoIP application for iPhone .

But I don't know the basics of VoIP concepts and also if there are any sources or library available that can I use in my application .

So if anyone can provide me VoIP learning resources or library or anything that is useful in terms of VoIP and iPhone it will be precious to me .

mpromonet
  • 11,326
  • 43
  • 62
  • 91
harshalb
  • 6,012
  • 13
  • 56
  • 92

4 Answers4

17

If it's still relevant: use pjsip . It's a SIP library written in C. You must compile the source for iphone, it is described in the docs here. After that take a look at a very basic sample application here. It isn't very hard to use even if you don't know C, or how to compile libraries. Which was my case.

UPDATE Please be aware that pjsip uses GPL license.

gyozo kudor
  • 6,284
  • 10
  • 53
  • 80
  • hey can you please tell us what are consequences of using GPL license. – Iqbal Khan Nov 07 '12 at 12:40
  • 4
    The source code under GPL which is legally incompatible with the Apple Store http://www.zdnet.com/blog/open-source/no-gpl-apps-for-apples-app-store/8046 – Mahmoud Adam Mar 05 '13 at 08:17
10

Another option is Twilio Client which has an iOS SDK. With Twilio you don't have to maintain any of the telephony infrastructure.

(I worked at Twilio)

John Sheehan
  • 77,456
  • 30
  • 160
  • 194
  • For the record Twilio recently reduced their price for Client. It is now $0.0025 (1/4 cent) per minute. https://www.twilio.com/client/pricing – Jarod Reyes Jan 13 '14 at 22:03
  • Hi, We have been working on twillo , we have implemented calling feature but it is always saying "Welcome to twillo you have to upgrade your account " and nothing else it is not making calls – Santosh Sharma Feb 09 '15 at 06:10
2

I think you should check my answer in this link.

iOS: Open Source VoIP/SIP Objective-C Code

Also check

SIP library for iOS with non-GPL license

You can also try OZeki,SIphone etc

Community
  • 1
  • 1
Suraj K Thomas
  • 5,773
  • 4
  • 52
  • 64
1

There is a helper to handle calls in iOS Apple Standard library CallKit Apple Documentation - CallKit

There is one lecture about it here WWDC 2016

And, there is a tutorial in Ray Wenderlich here

You still might need some library to handle SIP connections and handle incoming calls.

Open source library linphone

Paid library voipsipsdk