I am working with xcode 6.3, swift 1.2 and I install the "JSQMessagesViewController" library with cocoapods. Here is my pod file:
pod 'JSQMessagesViewController'
and my bridge file:
#import <JSQMessagesViewController/JSQMessages.h>
then I get the error:
'JSQMessagesViewController/JSQMessages.h' file not found with <angled> include; use "quotes" instead
I don't know why it goes wrong. When I update the bridge file with
#import "JSQMessagesViewController/JSQMessages.h"
I get the error
JSQMessagesViewController/JSQSystemSoundPlayer+JSQMessages.h:19:9: 'JSQSystemSoundPlayer/JSQSystemSoundPlayer.h' file not found with <angled> include; use "quotes" instead
This really gets me confused because the error is in the source code of JSQMessagesViewController which I cannot modify. I have googled for one day and get no methods to fix it. Since the JSQMessagesViewController library is so popular in githup, I believe the there must be someone know how to fix it.