Flutter 启动iOS工程找不到Flutter库

前因

开发flutter项目时,单独用Xcode打开iOS项目工程,会出现Flutter/Flutter.h file not found 报错。但是直接跑项目是可以正常运行,不管是使用Android studio还是Xcode运行都是没问题。如果不需要在原生上面进行编码,此问题似乎也无伤大雅,如果要进行原生交互,总不能让我字符串编码!!!!!

解决方案

很明显,就是Xcode工程中没有识别到Flutter库,看下对应的目录下,确实没有Flutter库。对比正常工程,发现iOS/Flutter文件目录中缺少了Flutter.xcframeworkApp.xcframework 。既然没有,那么就自己生成一个。

1、重新创建一个新的Flutter工程,cd到文件夹目录下

lua 复制代码
flutter create flutterdemo

2、cd 到创建的flutter工程目录下

bash 复制代码
cd flutterdemo

3、生成framework

css 复制代码
flutter build ios-framework --no-debug --no-profile --release --output=xcframework

4、复制xcframework文件夹到有问题的flutter项目根目录(和ios同级) 5、打开Xcode项目Build Phases > Link Binary With Libraries添加依赖,点击+,选择Add Ohter-> Add Files,选中上面的Flutter.xcframework文件夹。 最终效果:

6、Build Setting > Framework Search Paths 添加路径

shell 复制代码
$(SRCROOT)/../xcframework/Release/Flutter.xcframework

至此,问题已解决。

其他问题

在Flutter开发中,经常会用到一些原生插件,这些插件由于是通过pod管理的,经常会出现找不到什么文件,之类的报错。 常见的操作:

bash 复制代码
flutter clean

rm -Rf ios/Pods
rm -Rf ios/.symlinks
rm -Rf ios/Flutter/Flutter.framework
rm -Rf ios/Flutter/Flutter.podspec

rm ios/Podfile

flutter run

使用命令行移除pod库,然后重新拉取pod库,在此期间最好将Android Studio和Xcode 关闭,如果Xcode没关闭可能会弹出Xcode弹窗,记得选择Read From Disk

相关推荐
张二三3 小时前
flutter 开发笔记(九):原生桥接
android·flutter·ios
ii_best4 小时前
ios越狱脚本巨魔商店安装教程
ios
Batac_蝠猫4 小时前
iOS - 消息机制
ios
Batac_蝠猫5 小时前
iOS - 线程与AutoreleasePoolPage
ios
aikongmeng6 小时前
flutter doctor --android-licenses 错误提示
android·flutter
健忘已成殇8 小时前
iOS 本地新项目上传git仓库,并使用sourceTree管理
git·ios·xcode·cocoapods
ii_best8 小时前
ios脚本巨魔商店多巴胺越狱基本操作教程
ios
Batac_蝠猫9 小时前
iOS - AutoreleasePool
ios
sunly_10 小时前
Flutter:封装一个自用的bottom_picker选择器
flutter
长风清留扬11 小时前
小程序开发-页面事件之上拉触底实战案例
前端·javascript·css·ios·微信小程序·小程序·html