无法使用我刚刚使用 cocoaPods 安装的模块 (Swift)
Can't use module I just install using cocoaPods (Swift)
我正在尝试使用 JSQMessagesViewController 库,但我似乎无法正确安装它...我无法导入 JSQMessagesViewController,因为 Xcode 告诉我它不存在。
我使用 cocoa pods 安装它,就像我安装 Firebase 和 GoogleMaps 一样...我可以导入和使用这两个,但它就是不起作用,不知何故, JSQMessages.
有人知道为什么吗?
错误显示 "No such module 'JSQMessagesViewController'"
所以我把它修好了。
如果有人想要我的 pod 文件,它是:
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
use_frameworks!
target 'MyProject'
pod 'GoogleMaps'
pod 'Firebase'
pod 'JSQMessagesViewController'
你用 Swift 标记了这个,所以你可能没有在桥接头文件中导入框架。该框架在Objective-C中,所以你必须通过桥接头文件导入它。试试看,看看你是否能成功。
#import "JSQMessagesViewController.h"
#import "JSQMessage.h"
#import "JSQMessageBubbleImageDataSource.h"
#import "JSQMessageAvatarImageDataSource.h"
#import "JSQMessagesBubbleImage.h"
#import "JSQMessagesBubbleImageFactory.h"
#import "UIColor+JSQMessages.h"
#import "JSQMessagesAvatarImageFactory.h"
#import "JSQSystemSoundPlayer.h"
#import "JSQSystemSoundPlayer+JSQMessages.h"
#import "JSQMessagesTimestampFormatter.h"
#import "JSQPhotoMediaItem.h"
我在项目中使用的时候没有使用cocoapods,但是还是要使用桥接头文件
In order to use CocoaPods written in Swift, you must explicitly include use_frameworks! to opt into using frameworks. If you forget to include this, and CocoaPods detects you’re trying to use a Swift CocoaPod,
例如:
platform :ios, "9.0"
use_frameworks!
pod 'JSQMessagesViewController'
有关详细信息,请参阅此 tutorial
我正在尝试使用 JSQMessagesViewController 库,但我似乎无法正确安装它...我无法导入 JSQMessagesViewController,因为 Xcode 告诉我它不存在。
我使用 cocoa pods 安装它,就像我安装 Firebase 和 GoogleMaps 一样...我可以导入和使用这两个,但它就是不起作用,不知何故, JSQMessages.
有人知道为什么吗?
错误显示 "No such module 'JSQMessagesViewController'"
所以我把它修好了。 如果有人想要我的 pod 文件,它是:
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
use_frameworks!
target 'MyProject'
pod 'GoogleMaps'
pod 'Firebase'
pod 'JSQMessagesViewController'
你用 Swift 标记了这个,所以你可能没有在桥接头文件中导入框架。该框架在Objective-C中,所以你必须通过桥接头文件导入它。试试看,看看你是否能成功。
#import "JSQMessagesViewController.h"
#import "JSQMessage.h"
#import "JSQMessageBubbleImageDataSource.h"
#import "JSQMessageAvatarImageDataSource.h"
#import "JSQMessagesBubbleImage.h"
#import "JSQMessagesBubbleImageFactory.h"
#import "UIColor+JSQMessages.h"
#import "JSQMessagesAvatarImageFactory.h"
#import "JSQSystemSoundPlayer.h"
#import "JSQSystemSoundPlayer+JSQMessages.h"
#import "JSQMessagesTimestampFormatter.h"
#import "JSQPhotoMediaItem.h"
我在项目中使用的时候没有使用cocoapods,但是还是要使用桥接头文件
In order to use CocoaPods written in Swift, you must explicitly include use_frameworks! to opt into using frameworks. If you forget to include this, and CocoaPods detects you’re trying to use a Swift CocoaPod,
例如:
platform :ios, "9.0"
use_frameworks!
pod 'JSQMessagesViewController'
有关详细信息,请参阅此 tutorial