• 周日. 4月 21st, 2024

5G编程聚合网

5G时代下一个聚合的编程学习网

热门标签

Flutter 与Object-C混编开发

admin

11月 28, 2021

1.iOS原有项目集成flutter

官方文档:flutter官方开发文档地址

1.第一步:首先我们要在同级工程目录podfile下创建flutter工程。

终端命令:

flutter create --template module my_flutter

文件名就是my_flutter
当然也可以通过vscode 或者 android studio来创建此工程在指定位置下。
因为是完整的空flutter项目 所以也可以独立运行

2.第二步:配置podfile文件

在原有iOS项目里想要调用flutter,其实就是一个本地模块。类似与我们pod引用本地模块一样的方式。

podfile配置如下:

在target ” do 配置上面加上

## ==============Flutter ==============_
  flutter_application_path = 'flutter_moudle'
  load File.join(flutter_application_path, '.ios', 'Flutter', 'podhelper.rb')
  install_all_flutter_pods(flutter_application_path)

  ## ==============Flutter ==============_

flutter_application_path 指向你的flutter工程名称,我这里的工程名称是flutter_moudle为例。

load File.join(flutter_application_path, ‘.ios’, ‘Flutter’, ‘podhelper.rb’)
的含义是指向flutter_moudle工程目录下的 .ios/Flutter/podhelper.rb

如果你的工程没有.ios文件,那你需要用flutter build ios 命令来初始化flutter iOS工程。

之后执行 pod install –verbose

运行成功会在iOS工程的pod目录下有如图目录:

flutter_ios工程目录.png

3.第三步:xcode 配置flutter

在xcode的general 里配置flutter.xcframework

flutter_ios_general配置.png

4.AppDelegate配置

  • AppDelegate.h里添加引用
#import <Flutter/Flutter.h>
#import <FlutterPluginRegistrant/GeneratedPluginRegistrant.h>

并在interface里声明flutter引擎对象

@property (nonatomic,strong)FlutterEngine *flutterEngine;

  • AppDelegate.m 里找到didFinishLaunchingWithOptions方法。在应用启动完成时添加引擎初始化。
self.flutterEngine = [[FlutterEngine alloc] initWithName:@"my flutter engine"];
// Runs the default Dart entrypoint with a default Flutter route.
[self.flutterEngine run];
// Used to connect plugins (only if you have plugins with iOS platform code).
[GeneratedPluginRegistrant registerWithRegistry:self.flutterEngine];
return YES;

这里基本就是配置完成了

5.调用flutter引擎 跳转到fluter页面

在你想调用的地方添加

FlutterEngine *flutterEngine =
            ((AppDelegate *)UIApplication.sharedApplication.delegate).flutterEngine;
            
FlutterViewController *flutterViewController =
            [[FlutterViewController alloc] initWithEngine:flutterEngine nibName:nil bundle:nil];
            
[self.viewController.navigationController pushViewController:flutterViewController animated:NO];

直接运行工程就可以看到效果了。


2.常见集成问题

  • 1.编译报错:target 9.0问题和undefined method `flutter_additional_ios_build_settings’

解决方案:
podfile里将flutter_additional_ios_build_settings注释掉即可

post_install do |installer|
 installer.pods_project.targets.each do |target|
     target.build_configurations.each do |config|
         config.build_settings['IPHONEOS_DEPLOYMENT_T>ARGET'] = '9.0'
     end
#    flutter_additional_ios_build_settings(target)
 end
end

  • 2.Xcode Command PhaseScriptExecution failed with a nonzero exit code

解决方案:

清缓存

在Xcode菜单栏选择File -> Workspace Setting -> Build System new Build System(Default) 重新运行即可。

《Flutter 与Object-C混编开发》有34个想法
  1. PBN sites
    We will generate a structure of privately-owned blog network sites!

    Merits of our PBN network:

    We execute everything SO THAT GOOGLE doesn’t understand THAT this is A privately-owned blog network!!!

    1- We acquire domains from different registrars

    2- The primary site is hosted on a virtual private server (Virtual Private Server is fast hosting)

    3- The remaining sites are on distinct hostings

    4- We assign a separate Google ID to each site with confirmation in Search Console.

    5- We develop websites on WP, we do not utilize plugins with assistance from which malware penetrate and through which pages on your websites are created.

    6- We do not reiterate templates and use only exclusive text and pictures

    We never work with website design; the client, if wanted, can then edit the websites to suit his wishes

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注