1

我创建了新的 Objective C 项目并安装了 ConnectyCube 视频通话和 QMChat SDK。检查以下 pod 文件。

# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'

target 'Connecty' do
  # Uncomment the next line if you're using Swift or would like to use dynamic frameworks
  # use_frameworks!

  # Pods for Connecty

   pod 'QMChatViewController', :git => 'https://github.com/ConnectyCube/ios-chat-view-controller.git', :branch => 'master'
   pod 'QMServices', :git => 'https://github.com/ConnectyCube/sdk-ios-services.git'
   pod 'ConnectyCubeCalls'

  target 'ConnectyUITests' do
    inherit! :search_paths
    # Pods for testing
  end

end

当我运行该项目时,我遇到了'ConnectyCube/ConnectyCube.h' file not found错误。

在此处输入图像描述

谢谢

4

1 回答 1

1

据我了解,您尚未连接ConnectyCube iOS 聊天 SDK

ConnectyCube 聊天 API 用作视频通话 API 的信号传输,因此要开始使用视频通话 API,您需要连接到聊天。

聊天视图控制器和 iOS 服务是附加的 SDK,它们不会取代核心 SDK。

请尝试按照本指南连接 Chat SDK 。

于 2019-01-23T14:53:22.607 回答