如何在UIViewcontroller中访问已安装的pod库宏字符串?

问题描述 投票:1回答:1

我安装了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')

我该如何解决这个问题。

ios swift voip sinch callkit
1个回答
1
投票

在顶部的ViewController内,确保添加了模块

import //Module name 

在UIKit下,在你的情况下,我认为它的这个pod,

SinchRTC

只是确保它导入,以及如何使用它阅读文档here

© www.soinside.com 2019 - 2024. All rights reserved.