Reputation: 4375
I have updated the carthage after updated myxcode to 10.2 , And the Carthage framework class is not found alert I am getting .
Cannot find interface declaration for 'ChartMarkerImage', superclass of 'BalloonMarker' ?
My project swift version was 4.0 still.
But the file is available in Carthage framework .
What was went wrong here ?
What i tried is
Set toolchain to SWIFT_4_2 but no luck.
Added #import <chart/chart.h> in pch file still getting error.
Upvotes: 3
Views: 601
Reputation: 41
Update your carthage version to 0.33.0 from either of the below option
download pkg file from link
update carthage by homebrew
after updating use "carthage update --platform ios" command
Upvotes: 2
Reputation: 903
It's Carthage issue. The fixed release will soon available
UPD: Version 0.33.0 https://github.com/Carthage/Carthage/releases/tag/0.33.0
Upvotes: 2