问题描述
我在AppDelegate的以下行中没有没有此类模块'PFFacebookUtils'错误:
I am getting No such module 'PFFacebookUtils' error on below line in my AppDelegate:
import PFFacebookUtils
我已经检查并正确安装了ParseFacebookUtils.framework
和Parse FacebookUtilsV4.framework
.
I have checked and both ParseFacebookUtils.framework
and Parse FacebookUtilsV4.framework
are properly installed.
我相信我的桥接标头也可以正常工作,因为我有#import <ParseFacebookUtilsV4/PFFacebookUtils.h>
里面没有错误.我安装了其他Parse框架,它们都运行良好,并且它们的import语句没有错误.
I believe my briding header is also working fine because I have#import <ParseFacebookUtilsV4/PFFacebookUtils.h>
in it and there are no error there. I have other Parse frameworks installed and they are all functioning fine and their import statement have no errors.
我做错了什么?
推荐答案
我能够通过从swift文件中删除行import PFFacebookUtils
来解决此问题,但将导入保留在桥接头中.除非有人有更好的答案?
I was able to resolve this issue by removing the line import PFFacebookUtils
from swift file but leave the import in bridging header. Unless someone has a better answer?
这篇关于没有这样的模块"PFFacebookUtils"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!