first run : (carthage update) from terminal .
(make sure you have Carthage Carthage)
On your application targets’ “Build Phases” settings tab, click the “+” icon and choose “New Run Script Phase”. Create a Run Script in which you specify your shell (ex: /bin/sh), add the following contents to the script area below the shell:
/usr/local/bin/carthage copy-frameworks
and add the paths to the frameworks you want to use under “Input Files” .
$(SRCROOT)/Carthage/Build/iOS/SDWebImage.framework
and remove
$(SRCROOT)/Carthage/Build/iOS/WebImage.framework
and change
import webImage to import SDWebImage
and that all .
thank you for the fantastic project .
first run : (carthage update) from terminal .
(make sure you have Carthage Carthage)
On your application targets’ “Build Phases” settings tab, click the “+” icon and choose “New Run Script Phase”. Create a Run Script in which you specify your shell (ex: /bin/sh), add the following contents to the script area below the shell:
/usr/local/bin/carthage copy-frameworks
and add the paths to the frameworks you want to use under “Input Files” .
$(SRCROOT)/Carthage/Build/iOS/SDWebImage.framework
and remove
$(SRCROOT)/Carthage/Build/iOS/WebImage.framework
and change
import webImage to import SDWebImage
and that all .
thank you for the fantastic project .