我安装了sinch(在swift工作)
在pod文件夹“SINAPSEnvironment.h”中
#ifndef SINAPSEnvironmentAutomatic
#ifdef NDEBUG
#define SINAPSEnvironmentAutomatic SINAPSEnvironmentProduction
#else
#ifdef DEBUG
#define SINAPSEnvironmentAutomatic SINAPSEnvironmentDevelopment
#else
#define SINAPSEnvironmentAutomatic SINAPSEnvironmentProduction
#endif // ifdef DEBUG
#endif // ifdef NDEBUG
#endif // ifndef SINAPSEnvironmentAutomatic
在UIViewcontroller.swift我正在使用
push = Sinch.managedPush(with: SINAPSEnvironmentAutomatic)
push?.delegate = self
push?.registerUserNotificationSettings()
push?.setDesiredPushType(SINPushTypeVoIP)
在这里“SINAPSEnvironmentAutomatic”获取错误。 (使用未解析的标识符'SINAPSEnvironmentAutomatic')
我该如何解决这个问题。
在顶部的ViewController内,确保添加了模块
import //Module name
在UIKit下,在你的情况下,我认为它的这个pod,
SinchRTC
只是确保它导入,以及如何使用它阅读文档here