LMAlertView.h:27:9: 'RBBSpringAnimation.h' file not found with <angled> include; use "quotes" instead
This is the first Pod I have worked with that has this issue. Should the include use quotes as suggested by Xcode, or is there something I should be doing in Xcode to add the podfile's include files to the include file search path automatically when I add cocoa pods?
From what I am reading, this occurs when use_framworks! is in play. When using frameworks, the import needs to use frameworks based notation. I am still very new to this, and looking into it, but I think I am getting close to solving this myself.
Any solution yet? I just installed the pod and I have the same error
I solved the problem;
I had to change 2 lines of code.
from #import <CAAnimation+Blocks.h> to #import <CAAnimationBlocks/CAAnimation+Blocks.h>
and #import <RBBSpringAnimation.h> to #import <RBBAnimation/RBBSpringAnimation.h>
I created a pull request with a fix to allow @import LMAlertView but it has been a while, and this project is dead. As such, it was never merged, and I dont want to be yet another fork. As such, I just stopped using this tool. There is some functionality in here that I like, but I just moved on to using standard system alerts.