在应用程序委托中导入 AWSCore header - Swift

Importing the AWSCore header in application delegate - Swift

我按照这些说明将 AWS SDK 集成到我的 swift 应用程序中:http://docs.aws.amazon.com/mobile/sdkforios/developerguide/setup.html

Import the AWSCore header in the application delegate:

#import <AWSCore/AWSCore.h>

这条指令令人困惑。

在我的应用委托中我有:

import "AWSCore/AWSCore.h"

这给了我一个错误:

Expected identifier in import declaration

我应该如何在应用程序委托中正确导入 AWSCore header?

查看这些说明,我认为将那行添加到您的应用程序委托的步骤是错误的,假设您的应用程序委托文件是用 Swift 编写的。 (此外,该行是 Objective-C 语法,而不是 Swift。)

因为您已经将该行包含在桥接 header 中,所以您无需向任何 Swift 文件添加任何内容即可使用 AWS 开发工具包 - 它会自动包含在内.

别管它,应该没问题!