I want to use some Swift pods in my Object-C app, so I add use_frameworks! to my Podfile.After that, I run pod update. However, it cause many link errors. Xcode show me an error at #import <Masonry.h> ('Masonry.h' file not found),

I've tried many methods I can find, but all of them do nothing different.
Methods I have tried:
- Use @import XXX;instead of#import<XXX.h>.It bring a new error to me.enter image description here
- Removing Pods.frameworkfrom Link Binary With Libraries and adding them again manually.
- Set up User Header Search Path ,even set up many others.But all of them have no work. Appreciate for any solutions or sugestions.
 
    