1

我的应用适用于 android,试图在 iOS 中运行。我从颤动中得到这个错误。

 /Users/mdzainalabedin/carevan_app/ios/Runner/AppDelegate.m:10:6: error: expected '(' after 'if'
  if #available(iOS 10.0, *) {
     ^
1 error generated.

我的颤振版本

Framework • revision 1aafb3a8b9 (4 weeks ago) • 2020-11-13 09:59:28 -0800

引擎 • 修订版 2c956a31c0 工具 • Dart 2.10.4

任何人都可以帮助是什么问题?

谢谢你。

4

1 回答 1

0

我找到了解决方案。我认为这是简单的编程问题。我将代码替换为

#include "AppDelegate.h"
#include "GeneratedPluginRegistrant.h"

@implementation AppDelegate

- (BOOL)application:(UIApplication *)application
   didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
      [GeneratedPluginRegistrant registerWithRegistry:self];
      // Override point for customization after application launch.
         return [super application:application 
   didFinishLaunchingWithOptions:launchOptions];
 }

@end
于 2020-12-12T07:20:23.410 回答