I\'m developing an iphone app and I need to have some functions to use globally in my classes.
But how can I do this?
I just tried to create functions.
functions.
Try to rename functions.m into functions.c.
functions.m
functions.c
Or add this methods into some class SharedClass and decline them as static : + (void)prinTest. Then you can access them using this code
SharedClass
+ (void)prinTest
[SharedClass printTest];