i'm developing a static library using iPhone sdk. like others, this includes a .a file, as well as some .h files.
I'd like one of my classes to inherit from another class in my static library. this class is declared in a .h file which i'm exposing (outside .a), although the parent class is not exposed (inside .a).
how can i do this?