MessageKitをSwift4.2の環境下で導入したい(MessageKit1.0)。
GitHub - MessageKit/MessageKit: A community-driven replacement for JSQMessagesViewController
しかし、CocoaPodsからインストールすると30個近いエラーが。。。
MessageKit1.1がリリースされれば改善されるらしいですが、一旦以下で無事に導入できました。
Podfile
# Pods for MessageKitTest
pod 'MessageKit'
# 以下追加
post_install do |installer|
installer.pods_project.targets.each do |target|
if target.name == "MessageKit"
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '4.0'
end
end
end
end