SinchService 1.0.2

SinchService 1.0.2

测试已测试
语言语言 Obj-CObjective C
许可 自定义
发布最后发布2015年8月

Sinch维护。



  • 作者
  • Christoffer Ahlbin

SinchService 是 Sinch RTC SDK for iOS 的补充组件 (http://www.sinch.com/ios/)。

示例

 #import <Sinch/Sinch.h>
 #import <SinchService/SinchService.h>

 id config = [SinchService configWithApplicationKey:@"<APPLICATION KEY>"
                                  applicationSecret:@"<APPLICATION SECRET>"
                                    environmentHost:@"sandbox.sinch.com"];

 [config pushNotificationsWithEnvironment:SINAPSEnvironmentAutomatic];

 id<SINService> sinch = [SinchService serviceWithConfig:config];

 sinch.delegate = self;
 sinch.callClient.delegate = self;
 sinch.messageClient.delegate = self;

 [sinch logInUserWithId:@"<USER ID>"];