0

我正在尝试在我的应用程序中使用 CircularSlider。

我找到了以下两个模块 https://github.com/taglia3/CircularSlider https://cocoapods.org/pods/HGCircularSlider

这就是我所做的

$pod init

这是我的 pod 文件

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

target 'Dr.FOOD' do
  # Comment the next line if you're not using Swift and don't want to use dynamic frameworks
  use_frameworks!

  # Pods for Dr.FOOD
  pod 'Firebase'
  pod 'Firebase/Core'
  pod 'Firebase/Database'
  pod 'HGCircularSlider', '~> 1.0.3'
  pod 'CircularSlider'

end

然后,我做了什么

$ pod install
Analyzing dependencies
Downloading dependencies
Using CircularSlider (1.1.2)
Using Firebase (3.11.0)
Using FirebaseAnalytics (3.6.0)
Using FirebaseCore (3.4.6)
Using FirebaseDatabase (3.1.1)
Using FirebaseInstanceID (1.0.8)
Using GoogleInterchangeUtilities (1.2.2)
Using GoogleSymbolUtilities (1.1.2)
Using GoogleToolboxForMac (2.1.1)
Using HGCircularSlider (1.0.3)
Generating Pods project
Integrating client project

[!] Please close any current Xcode sessions and use `Dr.FOOD.xcworkspace` for this project from now on.
Sending stats
Pod installation complete! There are 5 dependencies from the Podfile and 10 total pods installed.

我正在使用 .xcworkspace,但它仍然在我的代码中显示“没有这样的模块 'HGCircularSlider'”。

我做错什么了吗?

4

1 回答 1

-1

这是我在添加新 pod 时所做的事情,以及您已经做的事情。

  • 打开工作区文件,进入项目设置页面:

在此处输入图像描述

  • 向下滚动,您会看到:

在此处输入图像描述

  • 单击+按钮并添加您想要的所有框架。

  • Command + B 构建项目。

  • 现在导入模块

于 2017-01-17T07:59:36.647 回答