尝试将 Linkedin SDK 集成到我的 Swift 项目时出错

Error when trying to integrate the Linkedin SDK into my Swift project

我正在尝试将 Linkedin SDK 集成到我的 Swift 项目中。我正在使用 this cocoapod,这是我遇到的错误。

使用未解析的标识符'LinkedinSwiftHelper'

我的播客文件:

use_frameworks!

目标'JobRewards'做 pod 'LinkedinSwift', '~> 1.6.5'

结束

这是我收到错误的行,我在我的视图控制器的 class 声明之后立即声明:

let linkedinHelper = LinkedinSwiftHelper(configuration: LinkedinSwiftConfiguration(clientId: "myclientid", clientSecret: "myclientsecret", state: "mystate", permissions: ["r_basicprofile", "r_emailaddress"]))

我的桥接头:

#ifndef ObjectiveCHeader_h
#define ObjectiveCHeader_h

#import <LinkedinSwift/LSHeader.h> // this will use both for POD and import framework.


#endif /* ObjectiveCHeader_h */

我的info.plist源代码:

<key>NSAppTransportSecurity</key>
<dict>
    <key>NSExceptionDomains</key>
    <dict>
        <key>linkedin.com</key>
        <dict>
            <key>NSIncludesSubdomains</key>
            <true/>
            <key>NSExceptionRequiresForwardSecrecy</key>
            <false/>
            <key>NSExceptionAllowsInsecureHTTPLoads</key>
            <true/>
        </dict>
    </dict>
</dict>
<key>LIAppId</key>
<string>4594413</string>
<key>CFBundleURLTypes</key>
<array>
    <dict>
        <key>CFBundleURLSchemes</key>
        <array>
            <string>li4594413</string>
        </array>
    </dict>
</array>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>LSApplicationQueriesSchemes</key>
<array>
    <string>linkedin</string>
    <string>linkedin-sdk2</string>
    <string>linkedin-sdk</string>
</array>

构建时 settings/Objective-C 桥接头这是当前路径:

/Users/myName/Desktop/PROJECTS/MyProject/MyProject/ObjectiveCHeader.h

在此先感谢您的帮助,我已经为此苦苦挣扎了 2 天。

使用 cocoa pods 时不需要桥接头。您是否在包含 viewcontroller 的 Swift 文件中导入 LinkedInSwift?对我来说,编译没有问题。

import UIKit
import LinkedinSwift

class ViewController: UIViewController {

    let linkedinHelper = LinkedinSwiftHelper()

}