问题描述
@import FirebaseUI;
@import FirebaseUI;
当我导入此模块时,它显示没有类似FirebaseUI的模块"
When I imported this module it shows "No Such Module as FirebaseUI"
但是我已经安装了豆荚
pod 'Firebase/Core'
pod 'FirebaseUI'
pod 'FirebaseUI/Auth'
pod 'FirebaseUI/Google'
pod 'FirebaseUI/Facebook'
pod 'FirebaseUI/Twitter'
pod 'FirebaseUI/Phone'
我是ios新手,有人可以帮助我
I am new to ios can someone please help me
推荐答案
从下载的FirebaseUI.framework https://github.com/firebase/FirebaseUI-iOS/releases
将FirebaseUI.framework拖到我的项目中
Dragged FirebaseUI.framework into my project
@import FirebaseUI
或使用
#import <FirebaseUI/FirebaseUI.h>
只需构建您的应用程序(cmd-b),它就可以解决问题.
Simply build your application (cmd - b) and it should resolve the issue.
或
请确保您打开的是安装Pod而不是普通的.xcode文件时创建的.workspace文件.
Make sure you are opening the .workspace file that is created when you install the pod's rather than the normal .xcode file.
项目->清洁另外,请尝试清理项目.
Project -> CleanAlso try cleaning the project.
这篇关于“没有这样的模块,例如firebaseUI";的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!