Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Xcode 4.2 documentation, clarification needed

Tags:

xcode4.2

I have Xcode 4.2 installed and had documentation updated

enter image description here

However clicking on keyword like strong provides no doc references

enter image description here

I feel like i am missing something still.

Please advise.

like image 682
James Raitsev Avatar asked Jun 12 '26 16:06

James Raitsev


1 Answers

Everything is fine, there's nothing missing. Quick Help is not provided for compiler directives and built-in keywords and data types.

You'll notice that quick help is unavailable for keywords like @interface, @property, nonatomic, readonly and so on. Likewise, built-in data types like int, float, double don't have quick help either. This is normal.

If you need help on the ARC keywords like strong, weak, __unsafe_unretained I suggest to read the Transitioning to ARC Release Notes.

For compiler directives please refer to my Complete List of Objective-C 2.0 @ Compiler Directives.

like image 127
LearnCocos2D Avatar answered Jun 16 '26 20:06

LearnCocos2D