Tagged Questions
The UILabel class implements a read-only text view.
186
votes
18answers
56k views
How do I vertically align text within a UILabel?
I have an UILabel with two lines. Sometimes, when the text is short enough, this text is displayed in the vertical center of the UILabel.
How do I vertically align my text at the top of the UILabel?
...
16
votes
1answer
5k views
Pixel Width of the text in a UILabel
I need to draw a UILabel striked through. Therefore I subclassed UILabel and implemented it as follows:
@implementation UIStrikedLabel
- (void)drawTextInRect:(CGRect)rect{
[super ...
15
votes
5answers
10k views
How to add line break for UILabel?
Let see that I have a string look like this:
NSString *longStr = @"AAAAA\nBBBBB\nCCCCC";
How do I make it so that the UILabel display the message like this
AAAAA
BBBBB
CCCCC
I ...
14
votes
1answer
8k views
How to draw border around a UILabel?
Is there a way for UILabel to draw a border around itself? This is useful for me to debug the text placement and to see the placement and how big the label actually is.
11
votes
4answers
8k views
dynamic calculation of UILabel width in UITableViewCell
I am building a custom, in-application settings view based on UITableViewCellStyle1 (or so). I'm trying to dynamically calculate the width of the left label (title) of a cell in order to determine how ...
10
votes
8answers
689 views
“My account” or “Your account” labels
I have somewhat of a strange question that is not really technical, but I do hope to collect meaningful advice.
I'm building a large web application, basically a photo sharing community site. As ...
9
votes
3answers
1k views
Objective C: How can you rotate text for UIButton and UILabel?
Objective C: How can you rotate text for UIButton and UILabel? 90 degrees, 180 degrees
Thanks
9
votes
1answer
1k views
How to check if UILabel is truncated?
I have a UILabel that can be varying lengths depending on whether or not my app is running in portrait or landscape mode on an iPhone or iPad. When the text is too long to show on one line and it ...
8
votes
3answers
4k views
Multiline UILabel with adjustsFontSizeToFitWidth
I have a multiline UILabel whose font size I'd like to adjust depending on the text length. The whole text should fit into the label's frame without truncating it.
Unfortunately, according to the ...
8
votes
3answers
9k views
How to change an UILabel/UIFont's letter spacing?
I've searched loads already and couldn't find an answer.
I have a normal UILabel, defined this way:
UILabel *totalColors = [[[UILabel alloc] initWithFrame:CGRectMake(5, 7, 120, 69)] ...
8
votes
2answers
10k views
Calculating multiline text height for UILabel/UITableViewCell: different results when calculating vs actual drawing
This general topic has been asked here multiple times: how to render UITableViewCells with varying amount of text and thus varying height. The canonical answer is: you calculate the height in table ...
7
votes
8answers
217 views
UILabel - string as text and links
I have a UILabel whose text I am getting from a server. Some of the text is to be identified as links, and on touching those links some action should be performed. e.g.
NSString *str = @"My phone ...
7
votes
3answers
3k views
Resulting lines of UILabel with UILineBreakModeWordWrap
I have a UILabel whose size is calculated with sizeWithFont: method. The line break mode is set to UILineBreakModeWordWrap (same flag is used when calculating the size with sizeWithFont:)...
...
7
votes
7answers
14k views
iPhone UILabel text soft shadow
I know soft shadows are not supported by the UILabel out of the box, on the iPhone. So what would be the best way to implement my own one?
EDIT:
Obviously I will subclass the UILabel and draw in the ...
7
votes
8answers
12k views
iPhone - UILabel containing text with multiple fonts at the same time
I am looking for a way to use a UILabel (or something similar) to display something like this:
Tom: Some message.
It is like how it's done in for example the Facebook app to display the "what's on ...
6
votes
2answers
635 views
Custom installed font not displayed correctly in UILabel
I'm trying to use a Helvetica Neue Condensed font which I got from the Adobe Font Collection Pro Package. Unfortunately, it seems to draw incorrectly when I use it within a UILabel.
The line height ...
6
votes
4answers
687 views
Scaling text to fit on iPhone
I'm having a bit of trouble working out the "best" way to render text in my application.
My main view consists of a text view, and the design of the application dictates a few things:
The (font) ...
6
votes
2answers
18k views
UILabel - setting font - typeface programmatically in iPhone
I have following code in my Application.
tmp=[[UILabel alloc] initWithFrame:label1Frame];
tmp.tag=1;
tmp.textColor=[UIColor blackColor];
[tmp setFont:[UIFont fontWithName:@"American Typewriter" ...
5
votes
2answers
248 views
iOS - How to achieve emboss effect for the text on UILabel?
Can I know how to have the emboss effect as the text "Reminders" as shown on the picture?
It looks like the text are embedded?
Thanks
5
votes
1answer
508 views
-setCornerRadius not found in custom view
I am making a custom uitableviewcell class and inside this cell I have a square label. I would like to round the corners of the label(dateBox) using this:
[dateBox.layer setCornerRadius:4.0f];
...
5
votes
1answer
3k views
How to control the line spacing in UILabel
Is it possible to reduce the gap between text when put in multiple lines in a UILabel? We can set the frame, font size and # of lines. I want to reduce the gap between the two lines in that label.
5
votes
1answer
411 views
UILabel visible part of text
Is there a way to get the visible part of text in word wrapped UILabel? I mean exactly the last visible character?
I'd like to make two labels rounding the image and would like to continue the text ...
5
votes
2answers
1k views
Allow user to select text from UILabel to copy
I have a UILabel, but how can I allow the user to select a portion of it's text. I don't want the user to be able to edit the text nor the label/textfield to have a border.
5
votes
1answer
2k views
How to calculate UILabel width based on text length?
I want to display an image next to a UILabel, however UILabel has variable text length, so I don't know where to place the image. How can I accomplish this?
5
votes
3answers
5k views
Inner Shadow in UILabel
is it possible to create such a UILabel with inner and outer shadow?
i only know shadowColor and shadowOffset
zoomed:
thanks!
5
votes
3answers
2k views
UITableViewCell color issues with custom table view background
I have a UITableView with a custom background image set like this:
self.tableView.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"mybg.png"]];
The background appears fine, ...
5
votes
7answers
3k views
Blurry UILabel as programmatic subview of UITableViewCell contentView
I am adding a UILabel instance as a subview of my custom UITableViewCell instance's contentView.
When I select the cell, the row is highlighted blue, except for the background of the label. The label ...
5
votes
3answers
17k views
Setting UILabel - Font through code - generates error - iPhone
See following code carefully. Because it works perfectly. Try to add in your application. it will work
- (void)viewDidLoad {
[super viewDidLoad];
// title label - tip
UILabel *tmp=[[UILabel alloc] ...
4
votes
1answer
217 views
Why is UIFont sizeWithFont including blank space in its calculation?
I am setting a UILabels frame based on what is returned by UIFont sizeWithFont but for whatever reason when i use a custom font, the values that are returned include some padding as seen below.
When ...
4
votes
1answer
358 views
What is best way to make UILabel Glow and look bright?
I made UILabel showing current time, I want that time(UILabel) glow on the screen, I tried many answers which I found via google, but no one is properply working,
need like this ,,,
...
4
votes
3answers
6k views
Handling Touch Event in UILabel and hooking it up to an IBAction
Ok, so I have a UILabel created in interface builder that displays some some default text of "tap to begin". When the user taps the UILabel I want it to trigger an IBAction method:
-(IBAction)next; ...
4
votes
4answers
2k views
How to enlarge dynamically an UILabel (label and font size)?
Im currently working on an iPhone project. I want to enlarge dynamically an UILabel in Objective-C like this:
How is this possible? I thought I have to do it with CoreAnimation, but I didn't ...
4
votes
3answers
2k views
Zoom UILabel & Re-render font at correct size
I have a multi-line UILabel that I want to enable zooming on.
I embedded it with a UIScrollView and set min zoom to .25 and max zoom to 4. This works well, however my UILabel's font looks rather ...
4
votes
2answers
2k views
duplicate rows in tableview on uitableviewcell
I have found some posts which are similar to my issue but not quite the same.
In my app the user can navigate between several uitableviews to drill down to the desired result. When a user goes ...
4
votes
4answers
5k views
How do I add a gradient to the text of a UILabel, but not the background?
hey, I want to be able to have a gradient fill on the text in a UILabel I know about CGGradient but i dont know how i would use it on a UILabel's text
i found this on google but i cant manage to get ...
4
votes
3answers
6k views
UILabel: Using the userInteractionEnabled method on a label
I am wondering if anyone has used the userInteractionEnabled method on a UILabel to allow the label to act like a button (or just to fire off a method). Any help would be greatly appreciated. ...
3
votes
2answers
130 views
UILabel text not showing, but the “text” value is updating (shows in console)
I have created a UILabel in my .storyboard file that has some initial text "Movie Title". I have connected that UILabel to a property defined in my ViewController files. For some reason the text ...
3
votes
0answers
83 views
CATextLayer wrapped sizeToFit?
If I set textLayer.wrapped = YES, how do I resize textLayer to contain the wrapped text? I.e., how do I get the new height of the textLayer?
Basically, I want something like -[UILabel sizeToFit].
3
votes
1answer
39 views
UILabel with given transparency but textLabel should be opaque
I have a UILabel which should have transparency (alpha) = .6 but Text of UILable should have alpha = 1. is this possible? thanks for any suggestion in advance...
3
votes
1answer
76 views
Disable a button based on a label's value
I have a UILabel called label, and you can add or subtract 1 from it using two buttons. When you subtract all the way down to 0, I want the minus button to stop working. And if the value is added, I ...
3
votes
3answers
180 views
Make UILabel look like CSS display: inline
Ok, here’s my problem. I have a rather large set of UIButtons that have a UIImage set as a background. Now I want to add labels inside those buttons. But the design I’m currently implementing uses ...
3
votes
1answer
180 views
UILabel Letters being cut off
I am trying to use a special character in the UILabel. But it is chopping off the labels. I put in a red background to show where the edge of the label is. Any reason why this may be happening? I have ...
3
votes
2answers
252 views
Get the NSString height
I have an NSString, and I want to know its height to create an appropriate UILabel.
Doing this
NSString *string = @"this is an example";
CGSize size = [string sizeWithFont:[UIFont ...
3
votes
2answers
386 views
How can I make clickable links like the Twitter and Facebook app? [closed]
Possible Duplicate:
How to make an expression clickable on iOS?
On Twitter and Facebook, usernames like @ and hashtags like # are clickable, and do something native within the app.
What is ...
3
votes
2answers
538 views
How to know the length of NSString that fits a UILabel with fixed size?
I know NSString has methods that determine the frame size for it, using NSString UIKit Additions, sizeWithFont......
How about the other way around? I mean if I have a fixed frame size, how do I know ...
3
votes
3answers
126 views
How to display text depending on the number in UILabel
I work on the app with some calculate function. I have a UITextField where user enter a number and UILabel where is result. How can I display some text in second UILabel depending on the number in the ...
3
votes
4answers
633 views
Programmatically create image from UILabel
I want to use a UILabel to create an RGBA stream of bytes image representation programmatically (at runtime).
For example, I want to create a UILabel in a specific font and with specific text, turn ...
3
votes
5answers
3k views
UILabel auto resize on basis of text to be shown
I'm working on an application, in which I'm required to autoresize the text area on basis of text to be displayed.
Firstly, I'm not sure for this either I should use UILabel (Logically is the best ...
3
votes
2answers
643 views
Animate UILabel text between two numbers?
I'm new to iPhone and Mac programming (developed for Windows before), and I've got a question:
How do I animate the text property of a UILabel between two numbers, e.g. from 5 to 80 in an Ease-Out ...
3
votes
2answers
720 views
Making multiline UILabel to start text from the top not the middle
I have a little problem with multiline UILabel, my UILabel text like starts from the middle strangely and it goes up when new lines arrive so that the last line is on the middle always. I want it to ...