I am always finding that if I create a delegate and then assign a class to conform to it I have to explicitly import the delegate .h file into that class otherwise I get an error stating the protocol cannot be found?
Am I missing a global setting somewhere that allows my project to find my delegate?
Thanks
That is normal and expected. Otherwise that compiler would ALWAYS have to parse all headers prior to being able to compile code possibly totally unrelated to most header files.