-
Notifications
You must be signed in to change notification settings - Fork 319
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Return nil if it's compiled as a dynamic framework #36
Comments
I also had this problem, for now I just added library manually and it works good. |
Same error too, fixed if I added library manually. |
Because there is a part of assembly code in the project. And the symbols may be different in the dynamic frameworks. So it doesn't working when using CocoaPods with |
mark! |
use_frameworks! |
I use CocoaPods to manage third-party libraries.
There are some reasons causes I had to add
use_frameworks!
to the Podfile, so all of the libraries are compiled as a dynamic framework.But I found that if FDStackView is compiled into a dynamic framework, it will return nil when it's initialized.
Is there any workaround? I don't want to add the code to my project manually.
FYI:
Objective-C-based project.
iOS 8.
The text was updated successfully, but these errors were encountered: