Closed dleviathan closed 8 years ago
which version of xcode are you running? are you using cocoapods? carthage? there was an issue with cocoapods... CocoaPods/CocoaPods#2792
Getting the same error. Using cocoapods. XCode 7.3.1
It compiles, but it's annoying to have this error pop up in the project all the time.
I assume it's because I'm not using dynamic libraries (still need to support iOS7).
Same. Xcode Version 7.3.1 (7D1014). Cocoapods 0.39.0
the issue seems to be the combination of cocoapods + IB_DESIGNABLE (+ iOS 7).
please try to not use SZTextView via cocoapods but one of the following ways and report back.
i just validated the issue with cocoapods 1.0.1.
unless your deployment target is iOS 7, the solution would be to add the use_frameworks!
macro to your Podfile
. the problem with iOS 7 is that dynamic frameworks, as introduced in cocoapods 0.36 with use_frameworks!
, technically work but will likely be rejected upon submission.
so, the only viable solution to have IB_DESIGNABLE
s to work when developing for iOS 7 is to either
i will close this issue for now. if anybody uncovers other details or solutions feel free to comment, reopen, whatever. thank you.
I use your lib in storyboard (with iO7 and Objective-C) when i add your controller and imbue class to SZTextView i got this error
how to fix it?