Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.............

share|improve this question

3 Answers

UILabel *label = [[[UILabel alloc] initWithFrame:...] autorelease];
// Do stuff
[self.view addSubView:label];

UILabel reference: http://developer.apple.com/library/ios/#documentation/uikit/reference/UILabel_Class/Reference/UILabel.html

share|improve this answer

Conveniently, Apple provides exactly that right here:

http://developer.apple.com/library/ios/#documentation/uikit/reference/UILabel_Class/Reference/UILabel.html

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.

share|improve this answer
1  
The class reference does not tell a person how to create the object. It is full of hugely useful information, but for a "beginning iPhone developer" it is not sufficient. – Tony Adams Apr 3 '12 at 14:17
Aye, my answer is missing the first part of his question, though that information that the class reference is full of answers the second part of his question, pertaining to the class's properties. I believe ssteinberg's answer will suffice quite thoroughly. – Andrew Apr 3 '12 at 17:54

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".)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.