0
Appirater를 Cocoapods와 함께 설치했는데 어떤 이유로 AppDelegate에서 클래스를 볼 수 없습니다. 나는 그래서 내가 브리지 헤더 파일을 필요가 있다고 생각하지 않습니다 포드 파일 use_frameworks을 사용했다 Appirater는 AppDelegate에서 사용할 수 없습니다.
platform :ios, '8.0'
target 'myapp' do
use_frameworks!
pod 'Appirater'
end
처럼`
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
}
포드 파일을 찾습니다. 이 도움을 많이받는다면 도움이 될 것입니다!
. 고맙습니다! – richc
@ richc, 나는 최근에 또 다른 프레임 워크를 가져오고있는 동안 잠시 그걸로 고생했다. – thephatp