我已经使用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,所以我认为我不需要桥接头文件。任何帮助使这项工作非常感谢!
答案 0 :(得分:1)
您正在使用框架,这意味着需要像导入任何其他框架一样导入框架:
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier:
"cell", for: indexPath) as! CustomCell
let customView: CustomView = Bundle.main.loadNibNamed("CustomView", owner:
self, options: nil)![0] as! customView
cell.customViewPlacement.addSubview(customView)
return cell
}