Ionic 找不到MBProgressHud. h文件

bvjveswy  于 2022-12-09  发布在  Ionic
关注(0)|答案(5)|浏览(205)

我已经从github下载了MBProgressHUD.m和MBProgressHUD.h文件,
放置在文件夹下Classes-〉MBprogressHub-〉然后是两个文件
现在,我已经将此文件包括在共享扩展名下

导入“MBProgressHUD.h”。

当我试图构建一个应用程序时,它给了我一个错误。找不到MBProgressHUD.h。
有什么解决办法吗。
我正在使用离子框架和新的ios和mac。
错误屏幕截图

谢谢

kmpatx3s

kmpatx3s1#

Do as suggested by Pravin Tate.
If problem not solved, In addition :
Set the target membership for the MBProgressHUD with the BiblioHiveShare

You will found target membership in MBProgressHUD files
Remove the files from your project.
When you add it back then you will find this window.

Select the targets
If you added new target manually then you can change target from File inspector at right panel

Hope it will help you.

mxg2im7a

mxg2im7a2#

执行以下操作

  • 前往finder/资源库/开发人员/Xcode
  • 删除DerivedData文件夹
  • 清理项目
  • 重建

如果仍有错误,请重新启动Xcode。
这种方法对我很有效。

0mkxixxg

0mkxixxg3#

在你的应用程序中使用cocoapods来处理第三方。更多信息请参见这个站点:-https://cocoapods.org

nnsrf1az

nnsrf1az4#

Step 1 Go to you your project folder
Step 2 Open the pod file (if your using mac use this command vi Podfile)
Step 3 after you have open the PodFile add these line

pod 'MBProgressHUD', '~> 1.0.0'

Step 4 save the changes made to the file
Step 5 then in terminal pod install
Step 6 clean your xcode project and run

vdzxcuhz

vdzxcuhz5#

我在Xcode中打开项目文件(.xcodeproj)而不是工作区文件(.xcworkspace)时遇到了这个问题。一个文件引用了pod项目,另一个没有,所以看不到构建所需的依赖关系。

相关问题