開発ブログ - Delphi で iOS の文字列定数を使う
Delphi から MacOS や iOS の文字列定数を使いたい時にどうすればいいのかわからなかったので、調べてみました。
こんな風にするみたい...
from iOSapi.CoreVideo
こんな風にするみたい...
interface
const
libCoreVideo = '/System/Library/Frameworks/CoreVideo.framework/CoreVideo';
function kCVPixelBufferPixelFormatTypeKey: CFStringRef;
implementation
function kCVPixelBufferPixelFormatTypeKey: CFStringRef;
begin
Result := CFStringRef(CocoaPointerConst(libCoreVideo, 'kCVPixelBufferPixelFormatTypeKey')^);
end;
from iOSapi.CoreVideo