Seesi / JitsiMeet.Xamarin.IOS

A xamarin ios wrapper library of JitsiMeetIOS SDK
6 stars 3 forks source link

Need Events on end #8

Closed LumiProj closed 3 years ago

LumiProj commented 3 years ago

Hi,

I am able to use Jitsi in Xamarin Forms only for iOS. Everything is pretty simple to use. Now in my app what I want when user end the call so I wanted to catch that event to perform some other task. Is there any out there which help me accomplish this task.

Thanks

Seesi commented 3 years ago

Hello @LumiProj , please implement "JitsiMeetViewDelegate" interface. I believe this will be the method you will need. void ConferenceTerminated (NSDictionary data);

Seesi commented 3 years ago

Hello @LumiProj , I just updated the Xamarin Forms sample project to provide you with the changes you will need. You can override other methods like ConferenceWillJoin etc for granular control.

LumiProj commented 3 years ago

Hi,

I have tested and achieved what I was looking for thanks ad highly appreacited.