Hi
I am defining calls to my global data manager as:
#define GDMANAGER [GlobalDataManager sharedGlobalDataManager]
That works nice except that CodeSense doesn't see that how it should. So if I put e.g. "GDMANAGER." and start typing some property, CodeSense doesn't give me the suggestions. It does give suggestions if I use it like this "[GDMANAGER someProperty]" but I am preferring the dot notation. CodeSense also gives right suggestions if I use "[GlobalDataManager sharedGlobalDataManager]." and then start typing.
So does anybody know how to force xCode to recognize that definition GDMANAGER as what it is, before runtime, so it gives me correct suggestions and word completions?
Thanks