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

I have a UILabel which I set a font size and a font name with Interface Builder. Now I have to read the values of both in my ViewController.

How can I do this?

Best Regards.

share|improve this question

4 Answers

up vote 37 down vote accepted

Add a property to your view controller's .h file:

@property (nonatomic, retain) IBOutlet UILabel *label;

Link the label to this IBOutlet under "File's Owner" outlets in Interface Builder. Add the property synthesizer in the .m

@synthesize label;

Make sure you release it in -dealloc

- (void)dealloc
{
    [self.label release];
    [super dealloc];
}

Then to get the font name and size all you need is

NSString *fontName = self.label.font.fontName;
CGFloat fontSize = self.label.font.pointSize;
share|improve this answer
Does not work. I can write text in it, but the fontName and pointSize is null. – Tim Feb 2 '11 at 9:18
Do you mean that you can programmatically change the text of the label, but you can't access the fontName and pointSize? I edited the above answer to include self.label, instead of just label, since I didn't mention creating an instance variable for label. – Ned Feb 2 '11 at 14:36
Also, make sure you've hooked up the label in Interface Builder with the IBOutlet you made in File's Owner (the view controller). – Ned Feb 2 '11 at 14:40
Ah, I forgot the connection in IB with the File's Owner. – Tim Feb 3 '11 at 7:18
Exactly what I was looking for. Good and quick answer. – Mr. 17 Nov 26 '12 at 4:25

Pointsize value is not the Font Size of used in UIFont size property. Say if you go set interface builder font size to 14 and do a print of the pointSize you'll get only 11.

share|improve this answer

you have to attach it to a UILabel IBOutlet, and then, label.font...

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.