在運用cocoapod導入Swift第三方時呈現這樣的問題:
Pods written in Swift can only be integrated as frameworks; adduse_frameworks!
to your Podfile or target to opt into using it. The Swift Pod being used is: Charts
platform :IOS, '8.0'
pod 'Charts', '~> 2.1.6'
123123
後果報錯了。
處理辦法為:( 蘋果不允許建包括swift的靜態庫,不同於OC可以運用平台版本的言語版本。)
platform :IOS, '8.0'
pod 'Charts', '~> 2.1.6'
use_frameworks!
123123
這樣就可以了。
【Pods written in Swift can only be integrated as frameworks】的相關資料介紹到這裡,希望對您有所幫助! 提示:不會對讀者因本文所帶來的任何損失負責。如果您支持就請把本站添加至收藏夾哦!