Ich habe viele Führer durchgesehen und sie alle scheinen mit dem ‚link_with‘ Befehl für die podfile, wie dieses Tutorial zu Punkt:Wie importiere ich Cocoapod in Xcode 7.3?
https://littlebitesofcocoa.com/138-using-cocoapods-in-xcode-playgrounds
Jedoch, wenn ich dies versuchen, scheint cocoapod nicht Ich mag die Syntax meines Podfiles und werde mir sagen, dass "link_with" jetzt nicht mehr unterstützt wird und der Name der Playground-Datei als Poddatei zu interpretieren scheint.
target 'Jawn’ do
link_with 'UrlMetaData' <----- (UrlMetaData.playground)
use_frameworks!
platform :ios, '8.4'
pod 'Kanna', '~> 1.0.0'
pod 'SlackTextViewController'
pod 'M13ProgressSuite'
pod 'Alamofire', '~> 3.4'
pod 'YouTubePlayer'
workspace 'Jawn'
end
wenn ich installiere pod Ich werde die folgende Ausgabe:
My-iMac:MyProject USERNAME$ pod install
[!] Invalid `Podfile` file: [!] The specification of `link_with` in the Podfile is now unsupported, please use target blocks instead..
# from /Users/USERNAME/Xcode Projects/MyProject/Podfile:2
# -------------------------------------------
# target 'Jawn' do
> link_with 'UrlMetaData'
# use_frameworks!
# -------------------------------------------