Ho appena compilato un progetto e Xcode restituisce questi due errori che non sembrano essere il mio errore. Come posso risolverli?Xcode fornisce errore di collegamento 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)
Attenzione a mostrare il codice relativo? –
Il problema è con il file 'UIImage + Blur.m'. Sta cercando un simbolo chiamato 'vImageBoxConvolve_ARGB8888'. È necessario includere il file .m (o .c) con questo simbolo. – rmaddy
Guarda questi link, sono molto simili: 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