flutter Swift编译器错误(Xcode):调用中的参数标签不正确(具有“fromViewController:content:delegate:",应为”viewController:content:delegate

lnlaulya  于 2023-02-25  发布在  Flutter
关注(0)|答案(1)|浏览(125)

我在Mac上运行的项目中出现以下错误:
Swift编译器错误(Xcode):
调用中的参数标签不正确(具有"fromViewController:content:delegate:",应为"viewController:content:delegate:")/用户/. pub-cache/托管/www.example.compub.dev/flutter_social_content_share-1.0.2/ios/Classes/SwiftFlutterSocialContentSharePlugin.swift:109:45
无法为模拟器构建应用程序。在iPhone 14 Pro Max上启动应用程序时出错。
我已经对Flutter和软件包版本进行了修改。
我目前有以下版本:
扑动:3.7.3
省道:2.19.2
开发工具:2.20.1
flutter社交内容共享:^1.0.2

ctehm74n

ctehm74n1#

错误消息本身会告诉你出了什么问题,函数调用的第一个参数标签应该是viewController:,但是你有fromViewController:,只需将函数调用的第一个参数从fromViewController:改为viewController:

相关问题