我刚刚编译了一个项目,Xcode返回了这两个错误,这似乎不是我的代码的错误。我该如何修复它们?
Undefined symbols for architecture i386:
  "_vImageBoxConvolve_ARGB8888", referenced from:
      -[UIImage(Blur) boxblurImageWithBlur:] in UIImage+Blur.o
ld: symbol(s) not found for architecture i386
clang: error: linker command failed with exit code 1 (use -v to see invocation)发布于 2013-07-02 06:39:44
Google是你的朋友:其他人通过将Accelerate框架添加到他们的项目中修复了这个问题(这看起来确实像一个框架错误)。
https://github.com/rnystrom/RNBlurModalView/issues/5
确保还包含QuartzCore框架,因为该库也需要该框架。
https://stackoverflow.com/questions/17414460
复制相似问题