Possible Duplicate:
What is the difference between NSString* mystring and NSString *mystring
I believe it doesn’t matter where you put the pointer qualifier (asterisk) and I thought I would ask the question to get clarification to know for sure.
Basically are all three of these shown below doing the same thing? Are they declaring a pointer to a UIColor, or are they each doing something subtlety different that would make it matter where you put the qualifier?
UIColor* myColorA;
UIColor * myColorB;
UIColor *myColorC;
They all do exactly the same thing. You could even leave the whitespace out completely.