Top "Uilabel" questions

The UILabel class implements a read-only text view in iOS.

Dynamically changing font size of UILabel

I currently have a UILabel: factLabel = [[UILabel alloc] initWithFrame:CGRectMake(20, 100, 280, 100)]; factLabel.text = @"some text some text some text some text"; …

ios objective-c fonts uilabel
Create tap-able "links" in the NSAttributedString of a UILabel?

I have been searching this for hours but I've failed. I probably don't even know what I should be looking …

ios hyperlink uilabel nsattributedstring uitapgesturerecognizer
How to set top-left alignment for UILabel for iOS application?

I have added one label in my nib file, then its required to have top-left alignment for that lable. As …

iphone ios label uilabel text-alignment
Adjust UILabel height to text

I have some labels which I want to adjust their height to the text, this is the code I wrote …

ios swift height uilabel frame
iOS: set font size of UILabel Programmatically

I'm trying to set the font size of a UILabel. No matter what value I put though the text size …

ios uilabel
Bold & Non-Bold Text In A Single UILabel?

How would it be possible to include both bold and non-bold text in a uiLabel? I'd rather not use a …

ios objective-c swift uilabel nsattributedstring
How to set textColor of UILabel in Swift

When I try setting the color of a UILabel to the color of another UILabel using the code myLabel.textColor = …

iphone swift uilabel xcode6 textcolor
How do I set bold and italic on UILabel of iPhone/iPad?

How do I set bold and italic on UILabel of iPhone/iPad? I searched the forum but nothing helped me. …

ios objective-c swift uilabel uifont
Setting UILabel text to bold

How do you set the text for a UILabel to bold in Swift programmatically? My code so far: var label = …

ios swift uilabel