集成单群聊 UIKit

小于 1 分钟

集成单群聊 UIKit

使用单群聊 UIKit 之前,你需要将其集成到你的应用中。

前提条件

开始前,确保你的开发环境满足如下条件:

  • Xcode 15.0 或以上版本;
  • iOS 13.0 或以上版本;
  • 请确保你的项目已设置有效的开发者签名。

安装

你可以使用 CocoaPods 安装 EaseChatUIKit 作为 Xcode 项目的依赖项。

CocoaPods

Podfile 中添加如下依赖:

source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '13.0'

target 'YourTarget' do
  use_frameworks!
  
  pod 'EaseChatUIKit'
end

post_install do |installer|
  installer.pods_project.targets.each do |target|
    target.build_configurations.each do |config|
      config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
      config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "arm64"
    end
  end
end

执行 cd 命令转到终端下 podfile 所在文件夹目录,然后执行以下命令:

pod install --repo-update

若 Xcode 15 编译出现 Sandbox: rsync.samba(47334) deny(1) file-write-create... 报错,你可以在 Build Setting 中搜索 ENABLE_USER_SCRIPT_SANDBOXING,将 User Script Sandboxing 的设置修改为 NO