2017-03-23 4 views
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 
} 

포드 파일을 찾습니다. 이 도움을 많이받는다면 도움이 될 것입니다!

답변

1
당신은 당신이 다른 모든 프레임 워크와 같은 프레임 워크를 가져와야하는 것을 의미하는 프레임 워크를 사용하고

: 물론

import Appirater

+0

. 고맙습니다! – richc

+0

@ richc, 나는 최근에 또 다른 프레임 워크를 가져오고있는 동안 잠시 그걸로 고생했다. – thephatp