我需要在主AppDelegate
中添加以下代码,我有2个文件,分别为AppDelegate
,AppDelegate.m
,AppDelegate.h
,我需要编辑哪个文件?
两个文件都没有 @import ,它们都具有 #import
@import UIKit;
@import Firebase;
@implementation AppDelegate
- (BOOL)application:(UIApplication *)application
didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
[FIRApp configure];
return YES;
}
答案 0 :(得分:1)
@import 自iOS
7开始可用,它是对 #import 的改进(有关更多信息,请参见例如this blogpost)。您应该可以使用@import Firebase;
,否则应该是#import <Firebase/Firebase.h>