我已经用 Cocoapods 安装了 Appirater,但是由于某种原因我在 AppDelegate 中看不到这个类。`
import UIKit
import CoreData
import UserNotifications
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
// set up Appirater
Appirater.setAppId("...") //DOES NOT RECOGNISE APPIRATER
}
pod 文件看起来像
platform :ios, '8.0'
target 'myapp' do
use_frameworks!
pod 'Appirater'
end
我在 pod 文件中使用了 use_frameworks,所以我认为我不需要桥接头文件。任何帮助使这项工作非常感谢!