Delphi + IOS:如何导入第三方库中定义的Const?

时间:2017-04-24 15:25:44

标签: ios objective-c delphi

在第三方库中我有定义

FOUNDATION_EXPORT NSString * __nonnull const kFIRInstanceIDTokenRefreshNotification;

我需要在delphi下导入它,以便我可以在运行时在ios下访问它。怎么做 ?我查看delphi的源代码,他们喜欢这样:

FrameworkMod := LoadLibrary(PWideChar(FwkPath));
result := GetProcAddress(FrameworkMod, PWideChar(ConstStr));

但是因为它是第三方图书馆怎么办LoadLibrary(PWideChar(FwkPath));?在FwkPath中使用什么路径?

0 个答案:

没有答案