我需要将CVCalendar框架导入到我的项目中。
这就是我的Podfile的样子:
# Uncomment this line to define a global platform for your project
platform :ios, '8.0'
# Uncomment this line if you're using Swift
use_frameworks!
target 'MyApp' do
pod 'CVCalendar', '~> 1.2.6'
end
target 'MyAppTests' do
end
我正在以这种方式在swift文件中导入框架:
import CVCalendar
要使用CVCalendar,您需要放置两个UIView对象,一个用于菜单,另一个用于日历本身。我可以将UIViews的类设置为适当的类(分别是CVCalendarMenuView和CVCalendarView)但我在import语句中收到No such module'CVCalendar'错误。
我看到Pods / CVCalendar文件夹中的类有'?'旁边,见here。
我需要做些什么才能让它发挥作用?
谢谢。