2

AWS Cognito をバックエンドとして使用して、アプリにユーザー認証機能を追加しようとしています。

これまでのところ、アプリをビルドしようとするたびにこのエラーが発生し、2 つのクラスでこれらのエラーを示しています。

AWSMobileClient クラス:

func didFinishLaunching(application: UIApplication, withOptions launchOptions: [NSObject : AnyObject]?) -> Bool {
    print("didFinishLaunching:")


    let didFinishLaunching = AWSIdentityManager.defaultIdentityManager().interceptApplication(application, didFinishLaunchingWithOptions: launchOptions)

    if (!isInitialized) {
        AWSIdentityManager.defaultIdentityManager().resumeSession(completionHandler: {(_ result: AnyObject, _ error: Error) -> Void in
            print("result = \(result), error = \(error)")
        } as! (Any?, Error?) -> Void) --> ERROR ON THIS LINE <--
        isInitialized = true
    }
    return didFinishLaunching
}

AppDelegate クラス:

    func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
    // Override point for customization after application launch.
    return AWSMobileClient.sharedInstance.didFinishLaunching(application: application, withOptions: launchOptions as [NSObject : AnyObject]?) --> ERROR ON THIS LINE <--
4

1 に答える 1