In a 3rd party library i have the definition
FOUNDATION_EXPORT NSString * __nonnull const kFIRInstanceIDTokenRefreshNotification;
and I need to import it under delphi, so that i can access it under ios at runtime. how to do it ? i look the source code of delphi, they do like this :
FrameworkMod := LoadLibrary(PWideChar(FwkPath));
result := GetProcAddress(FrameworkMod, PWideChar(ConstStr));
but as it's a 3rd party library how to do LoadLibrary(PWideChar(FwkPath));
? what path to use in FwkPath ?