I'm trying to getting started with Typhoon Framework and I have a problem.
My code is:
@interface CustomAssembly : TyphoonAssembly
the CustomAssembly don't have more code.
When I run
[CustomAssembly new] activate];
the app crash with:
-[CustomAssembly typhoonPropertiesUpToParentClass:]: unrecognized selector sent to instance 0x15e86610
How can I fix it? What's the problem with this code?
Finally I get the answer.
The problem was that I needed to add Obj-c in "Other linker flags" I removed this flag when I added Parse framework.