FSCalendarがインストールできない...
解決したいこと
FSCalendarをimportしたいです。
FSCalendarを使っていろいろなカレンダーの実装を試そうとしています。
発生している問題・エラー
Automatically assigning platform `iOS` with version `16.4` on target `calendar` because no platform was specified. Please specify a platform for this target in your Podfile. See `https://guides.cocoapods.org/syntax/podfile.html#platform`.
該当するソースコード
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
target 'calendar' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# Pods for calendar
pod 'FSCalendar'
end
自分で試したこと
”See https://guides.cocoapods.org/syntax/podfile.html#platform
.”という指示に従いホームページを参照し、platformのバージョンを'9.0'以上のものにして再度'pod install'を試しました。
0