I already wrote in some other post about having problems with xCode 3.2.2 and auto completion. Here is the thing and I would like to know if anybody else have similar problems or maybe know how to solve it:
Type this in xCode:
CCNode *node;
Then type node.con and xCode will automatically suggest node.contentSize as it should.
Now try:
CCLayer *layer;
Then type layer.con and xCode will not suggest anything for auto complete. But if you try [layer setCon...] xCode will correctly suggest [layer setContentSize:...]. Why this is happening as CCLayer is subclass of CCNode, so I suppose Code Sense should do its auto complete features?
This drives me crazy because I'm using dot notation all the time and without auto completion it's pain in the ass...