File > Add Packages > Paste in 'https://github.com/hotwired/turbo-ios/' > Add
First run sudo gem install cocoapods
Then touch Podfile
Add the following content to your Podfile
adjusting the name of your app and the release tag at https://github.com/hotwired/turbo-ios/releases:
platform :ios, '16.0'
target 'AppName' do
pod 'Turbo', :git => 'https://github.com/hotwired/turbo-ios.git', :branch => 'main', :tag => '7.0.0-rc.7'
end
Close all XCode instance and reopen using the following command:
open AppName.xcworkspace
Where AppName is replaced with your own app name.