Hi,
This is a lame question; but I couldn't find a way. In an iPhone application I am creating a function in .m file:
- (void) xx {
....
return;
}
and in .h file a declare it as:
- (void) xx;
However when I call the function in anywhere, I get linker error (symbol not found) in compile process. Where is my error?