在第三方库中我有定义
FOUNDATION_EXPORT NSString * __nonnull const kFIRInstanceIDTokenRefreshNotification;
我需要在delphi下导入它,以便我可以在运行时在ios下访问它。怎么做 ?我查看delphi的源代码,他们喜欢这样:
FrameworkMod := LoadLibrary(PWideChar(FwkPath));
result := GetProcAddress(FrameworkMod, PWideChar(ConstStr));
但是因为它是第三方图书馆怎么办LoadLibrary(PWideChar(FwkPath));
?在FwkPath中使用什么路径?