我在iOS开发新的,和我的应用程序和Xcode 7.3的XCode 8和雨燕2.3
我想使用的Xcode开发8,和我使用Cocoapods
生成项目。
我不想现在将我的代码迁移到swift 3.0,我想为我的项目代码使用swift 2.3。
这里我Podfile
:
source 'https://github.com/CocoaPods/Specs.git'
use_frameworks!
target 'xxxxx' do
platform :ios, '9.3'
pod 'RESideMenu', '4.0.7'
pod 'Alamofire', '3.4.1'
pod 'AlamofireImage', '2.4.1'
pod 'JSONHelper', '2.1.0'
pod 'SwiftyJSON', '2.3.2'
pod 'ObjectMapper', '1.3.0'
pod 'AlamofireObjectMapper', '3.0.2'
pod 'RealmSwift', '~> 0.97'
pod 'KVNProgress', '2.3'
pod "CalendarLib", '2.0'
pod 'Charts/Realm', '2.2.5'
pod 'SwiftEventBus', :tag => '1.1.0', :git => 'https://github.com/cesarferreira/SwiftEventBus.git'
pod "RichEditorView"
pod 'SwiftHSVColorPicker'
pod 'Google/Analytics'
pod 'Fabric'
pod 'Crashlytics'
end
获取错误事件,如果我设置Use Legacy Swift Language
版本到YES
是否有可能更新荚迅速3版,并仍然使用SWIFT 2.3为我的项目?
感谢您的帮助
恐怕这不是如何工作的。您可以使用支持2.3版本的旧分支的旧版本。 – Wolverine