在FirebaseCore.framework
我有这个声明:
@interface FIRApp : NSObject
+ (void)configure;
@end
我在delphi中声明了这样一个对象:
FIRAppClass = interface(NSObjectClass)
['{37BEFC11-8AE6-4312-971D-53BF9D8DB22A}']
procedure configure; cdecl;
end;
FIRApp = interface(NSObject)
['{69F89279-48F0-4276-B337-37FE79821507}']
end;
TFIRApp = class(TOCGenericImport<FIRAppClass, FIRApp>) end;
现在,当我运行TFIRApp.OCClass.configure
时,我收到错误“ ObjectiveC类无法找到FIRApp ”
我想念的是什么?如何在我的iOS应用程序中包含FirebaseCore.framework并实现FIRApp?