ImageIO フレームワークを使用して画像からメタデータ (kCGImagePropertyExifBodySerialNumber
または など )を準備しようとしています。kCGImagePropertyExifLensModel
残念ながら、コンパイル中にリンカーに問題があります。
Undefined symbols for architecture x86_64:
"_kCGImagePropertyExifBodySerialNumber", referenced from:
-[AppDelegate applicationDidFinishLaunching:] in AppDelegate.o
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
ImageIO/CGImageProperties.h
インポートされたものでありImageIO.framework
、ターゲット構成の「リンクされたフレームワークとライブラリ」のリストに含まれています。
kCGImagePropertyExifBodySerialNumber
または を使用しようとしているときにのみ発生しますkCGImagePropertyExifLensModel
。同じプロジェクトkCGImagePropertyExifFocalLength
で、kCGImagePropertyExifExposureTime
問題なく使用できます
何か案は ?