Hi there
I have this code:
if([annotation respondsToSelector:@selector(tag)]){
disclosureButton.tag = [annotation tag];
}
and I get the warning:
'-tag' not found in protocol
Fair enough, but I've created a new object with the protocol that has a synthesized int tag
variable.
EDIT: found why the app was crashing - not this line. Now I just get a warning and the app works fine.
Thanks Tom