I am lost .
i used to use the CCScrollLayer a lot, its a cocos2d class but now i got a strange error- mach-o-linker
.
- i have added the classes to my project (
CCScrollLayer.h+m
) - i have imported them
- i have defined :
CCScrollLayer *scroller
;
then , when i put this line of code :
scroller = [[CCScrollLayer alloc] initWithLayers:[NSArray arrayWithObjects:page1,page2,nil] widthOffset:100];
i got mach-o-linker errors !!!
Undefined symbols for architecture armv7:
"_OBJC_CLASS_$_CCScrollLayer", referenced from:
objc-class-ref in mainScene.o
ld: symbol(s) not found for architecture armv7
clang: error: linker command failed with exit code 1 (use -v to see invocation)
i have defined armv6 and 7, at the project settings .
what is that ?? i know its not a code error but soemthing different.
Probably you should add implementation file for CCScrollLayer to the CompileSources in BuildPhases of your target if it's not there yet