I am a beginning iPhone developer. I want to create a Label programmatically, and I want to know all of the properties and functionality of the Label class. Please help me.............
UILabel reference: http://developer.apple.com/library/ios/#documentation/uikit/reference/UILabel_Class/Reference/UILabel.html |
|||
|
|
|
Conveniently, Apple provides exactly that right here: For any question of this nature, simply go to Google, type in "*Something* Class Reference" (where *Something* should be replaced with "uilabel" or "nsstring" or some such objective c class) and follow the result from developer.apple.com. |
|||||||
|
|
A quick way to get what you seek: Control-click (or right-click) on the on the class type (UILabel in this case) and pick "Jump to Definition". XCode will take you directly to the header file where all is officially declared. You could also pick "Find Text in Documentation" to go to the XCode document for the class. (If there are categories or other variations available, you will have to pick "Interface UILabel".) |
|||
|
|