I am developing a VOIP_App that uses PJSIP Library
which is written in C-Language
, most of the methods written in that library are called automatically according to the situation.
There is method named on_incoming_call
called automatically and call is received by user, I want to add some user interactions for receiving call, I need to create some callBack, that should be called in this method, and the method definition should be written in Objective-C
.
Here is the code snippet:
/* Callback called by the library upon receiving incoming call */
static void on_incoming_call(pjsua_acc_id acc_id, pjsua_call_id call_id,
pjsip_rx_data *rdata)
{
pjsua_call_info ci;
PJ_UNUSED_ARG(acc_id);
PJ_UNUSED_ARG(rdata);
pjsua_call_get_info(call_id, &ci);
PJ_LOG(3,(THIS_FILE, "....\n\n\n Incoming call from %.*s!! \n\n\n",
(int)ci.remote_info.slen,
ci.remote_info.ptr));
/* Automatically answer incoming calls with 200/OK */
pjsua_call_answer(call_id, 200, NULL, NULL);
}
You can achieve your objective by posting a notification from the callback in the PJSIP library
Now you can observe this notification in the AppDelegate
And then this function to show your UIViewController for accepting or rejecting the incoming call