Tôi vừa biên soạn một dự án và Xcode trả về hai lỗi này dường như không phải là lỗi của mã của tôi. Làm thế nào để sửa chúng?Xcode cung cấp lỗi liên kết Apple Mach-O
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)
Chăm sóc để hiển thị mã liên quan? –
Sự cố xảy ra với tệp 'UIImage + Blur.m'. Nó đang tìm kiếm một biểu tượng có tên 'vImageBoxConvolve_ARGB8888'. Bạn cần bao gồm tệp .m (hoặc .c) có biểu tượng này. – rmaddy
Nhìn vào các liên kết này, chúng rất giống nhau: http://stackoverflow.com/questions/22032987/how-to-solve-mach-o-linker-error-in-ios7-xcode-5-0-1 http://stackoverflow.com/questions/20073146/mach-o-linker-error-xcode-5 – user3817794