The UILabel class implements a read-only text view in iOS.
How can I make a multiline UILabel in interface builder for iOS? I tried the UITextView but it didn't quite …
ios objective-c swift uilabel line-breaksOk, so I have a UILabel created in interface builder that displays some some default text of "tap to begin". …
ios iphone uilabel interface-builder touch-eventHow am I supposed to configure programmatically (and in which method) a UILabel whose height depends on its text? I've …
ios ios6 uilabel autolayoutI have a label which has few lines of text and I want to increase the spacing between the lines. …
ios swift uilabel line-spacingI'm working on an application, in which I'm required to autoresize the text area on basis of text to be …
ios objective-c uilabel uitextviewI want to make UILabel's text bold infoLabel=[[UILabel alloc]initWithFrame:CGRectMake(90,150, 200, 30)]; [infoLabel setText:@"Drag 14 more Flavors"]; [infoLabel setBackgroundColor:[UIColor …
ios objective-c uilabel uifont textcolorI create my UILabel in swift: let label = UILabel(frame: CGRect( x: 50, y: 50, width: 100, height: 50)) setting properties seems to be …
enums uilabel swiftHow can I center the UILabel on the UIView? I am using the following code float width = weatherView.bounds.size.…
ios uiview uilabelI'm currently looking at a UILabel with the property addMessageLabel.layer.cornerRadius = 5.0f; On a device with iOS 7.0 installed, it …
ios uiview ios7 uilabel cornerradius