27

Last week I asked a question about a Simulator bug with NSAttributedString not displaying: iOS 7 Simulator Bug - NSAttributedString does not appear

Unfortunately it now appears this is not a simulator bug but an iOS 7 bug. I have now reproduced this issue on an iPhone 5 device.

The bug appears to be the combination of using NSUnderlineStyleAttributeName & NSParagraphStyleAttributeName as attributes for a NSAttributedString.

I have only tested on two iOS 7 devices so far, and the issue has only appeared on one of them. Even after they have both been upgraded to the exact same version:

  • 1st iPhone 5 with iOS 7.0 (11A465): Text does NOT appear

  • 1st iPhone 5 after upgrading to 7.0.2 (11A501): Text does NOT appear

  • 2nd iPhone 5 running iOS 7.0 (11A4449d): Text displays correctly

  • 2nd iPhone 5 after upgrading to 7.0.2 (11A501): Text does NOT appear

So it appears Apple introduced this bug after iOS 7.0 (11A4449d). I've filed a bug with them and will update you on any response I get.

Steps to reproduce bug

If you are running iOS 7.0.2 then you should be able to reproduce this bug.

Either download and run this project on your device https://github.com/rohinnz/iOS-7-BUG---NSAttributedString-does-not-appear

or

1) In Xcode 5 create a new 'Single View Application'. Call it whatever.

2) In ViewController.m, replace the viewDidLoad method with:

- (void)viewDidLoad
{
    [super viewDidLoad];

    NSMutableParagraphStyle* paragraph = [[NSMutableParagraphStyle alloc] init];
    paragraph.alignment = NSTextAlignmentCenter;

    NSAttributedString* attrStr = [[NSAttributedString alloc] initWithString:@"Lorem ipsum dolor sit" attributes:
                                   @{NSUnderlineStyleAttributeName:@(NSUnderlineStyleSingle),
                                     NSParagraphStyleAttributeName:paragraph}];

    UILabel* myLabel = [[UILabel alloc] initWithFrame:CGRectMake(10, 30, 0, 0)];
    myLabel.backgroundColor = [UIColor greenColor];
    myLabel.attributedText = attrStr;
    [myLabel sizeToFit];

    [self.view addSubview:myLabel];
}

3) Compile and run on your device. Depending on your version of iOS 7, the text will either display, or will not. The UILabel's background color will display in both cases.

Screenshots

iPhone 5 with iOS 7.0 (11A465)

iPhone 5 with iOS 7.0 (11A465)

iPhone 5 with iOS 7.0 (11A4449d)

iPhone 5 with iOS 7.0 (11A4449d)

My Question

Is anyone able to reproduce this issue on a device?

Community
  • 1
  • 1
RohinNZ
  • 3,258
  • 5
  • 22
  • 34
  • You might want to create a minimal project that illustrates the bug, host it on github or something, and open a bug via https://developer.apple.com/bug-reporting/ , pointing at the github project in the bug report. – Greg Oct 02 '13 at 01:48
  • Good idea, I'll upload something to github soon. I've already filed a bug with Apple, but I'm not expecting them to reply anytime soon as they still haven't gotten back to me about another iOS 7 bug I raised with them a while ago. – RohinNZ Oct 02 '13 at 02:19
  • 1
    i found similar results by using backgroundcolor on attributed text and resizing the uilabel while rotating the device. if i dont use backgroundcolor everythign works fine. with backgroundcolor after change the width the text disappears. on rotation back to original the text appears again. – Jeanette Müller Oct 07 '13 at 10:50
  • `UILabel` is just buggy. `NSTextAttachments` are also causing lines of text to disappear, but _inversely related to the label's height_. See this question: http://stackoverflow.com/q/19253224/1580288 – EthanB Oct 18 '13 at 02:48
  • I think my second workaround, where you let the label resize its own height, is a completely reliable solution for this problem. – matt Oct 23 '13 at 14:59
  • Try again using iOS 7.1. This bug may now be fixed. – matt Nov 24 '13 at 20:10
  • Have you reported this bug ? I experience the same problem. – Paul Brewczynski Dec 30 '13 at 11:31
  • If text is very large, then you need to use UITextView with scrolling enabled and editable/selected disabled (instead of UIScrollView & Content view & UILabel). – Borzh Aug 09 '18 at 16:51

7 Answers7

14

I have found a workaround for this bug. In your github code, to use the workaround, you would say this:

NSAttributedString* attrStr = 
    [[NSAttributedString alloc] initWithString:@"Lorem ipsum dolor sit\n" // <---
    attributes:
        @{NSUnderlineStyleAttributeName:@(NSUnderlineStyleSingle),
        NSParagraphStyleAttributeName:paragraph}];

UILabel* myLabel = [[UILabel alloc] initWithFrame:CGRectMake(10, 30, 0, 0)];
myLabel.backgroundColor = [UIColor greenColor];
myLabel.attributedText = attrStr;
[myLabel sizeToFit];

myLabel.numberOfLines = 2; // <---

I have made two changes: I've appended a newline character to your original string, and I've set the label's numberOfLines to 2.

What the workaround does is to force the label's text up against the top of the label. This seems to solve the problem. In other words, the bug appears to stem from the label's attempt to vertically center its text; if you deliberately make the text too long for the size of the label by juggling the label's height, numberOfLines, and excess newline characters at the end of the text, the attributed string will be drawn.

EDIT I've just found another workaround along the same lines: let the label resize itself to fit the text. See my code and explanation here: https://stackoverflow.com/a/19545193/341994 In that code, I do the same thing from the opposite end, as it were: I give the label a fixed width constraint but a flexible height constraint, and by setting its own height, the label brings the top of its text up against the top of itself, and thus is able to display the text correctly. In other words, this is just another way of preventing the label from centering its text vertically, which is what seems to trigger the bug.

FURTHER EDIT I have the sense that this bug may get fixed in iOS 7.1.

Community
  • 1
  • 1
matt
  • 447,615
  • 74
  • 748
  • 977
  • Got this problem in iOS 8. Simply set `numberOfLines` to 2 solved the problem. Spent almost 2 hours trying to find if there was my mistake before googled the problem. Thanks. – kas-kad Sep 25 '14 at 16:33
  • Same in iOS 8. Spent ages trying to fix that! Thanks a lot. – johnyorke Oct 16 '14 at 14:14
6

I also had the same problem when setting the background color on text of a UILabel in a UITableViewCell. My workaround was to use a UITextView with UserInteraction disabled instead of a UILabel in the cell and it worked.

Update: Found the issue only appearing with UILabel included in Basic UITableViewCell.

Update 2: Also found that the problem does not occur when a UILabel wraps to multiple lines of text. One workaround is to force text to wrap by adding a newline and space. Very hacky, but it works. Make sure numberOfLines is set to zero and lineBreakMode is set to NSLineBreakByWordWrapping.

Indi
  • 534
  • 2
  • 6
3

I had the same issue in my application. It was occurring in the simulators, as well as on my device (iPhone 5 running 7.0.2 (11A501)). I then realized that my UILabels living in other ViewControllers were displaying NSAttributedStrings using the NSUnderlineStyleSingle attribute properly.

After some troubleshooting. It seems that if you're using the default font (I'm using System 17.0) and your UILabel has a height of less than 62 pixels, it will display correctly regardless of what background color, text color, or alignment you are using. A change of the UILabel's height to a value greater than 61 pixels, allowing auto-sizing to change the height for you, or a change of the font to a Custom one will result in the disappearing of the underlined NSAttributedText.

At first I thought this issue might be due to my positioning the UILabel behind the new Status Bar (or lack thereof), but even in positions which would interact with this new feature, the height-rule still held. I find it hard to believe that the height of the UILabel would cause such an issue, but that's the conclusion I came to.

hkgearhart
  • 31
  • 4
  • Definitely related to height, but in a weird way: http://stackoverflow.com/q/19253224/1580288 – EthanB Oct 18 '13 at 02:53
3

Wow, took me a while to find this. Looks like I'm have a similar problem as Indi. Setting the background color of an attributed string caused the text to just disappear. Only place I can reproduce this is on a device running iOS 7.0.3.

perezda
  • 486
  • 4
  • 11
1

workaround: use an image view

CGRect rect = self.frame;

CGRect rr = [attribText boundingRectWithSize:rect.size options:NSStringDrawingUsesLineFragmentOrigin|NSStringDrawingUsesDeviceMetrics context:nil];
UIGraphicsBeginImageContextWithOptions(rr.size, NO, 0.);
[attribText drawWithRect:rr options:NSStringDrawingUsesLineFragmentOrigin|NSStringDrawingUsesDeviceMetrics context:nil];
UIImage* image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
UIImageView *imView = [[UIImageView alloc]initWithImage:image];
[self addSubview:imView];
vvolf
  • 23
  • 6
0

I noticed this problem occurring in a similar way but ended up with a different solution. The string would sometimes disappear, while the solution proposed above helped ensure the text did not disappear, the text would often show up without any of the attributes I had set (strikethrough, different colours, etc.)

Here's the setup:

A legacy project using springs and struts being built using Xcode 6.1.1 and iOS SDK 8.1. The problem was more noticeable on iPad devices as compared to iPhone devices (~ 5% of the time on iPhones vs. 95% on iPads). Regardless whether I used numberOfLines, sizeToFit or other methods, the attributes would not show up correctly on an iPad or iPhone 100% of the time.

The solution was to switch to Auto Layout and employ the solution above (numberOfLines = 2, sizeToFit seemed optional for my situation)

It seems there's a bug with Attributed Text on UILabels with Springs and Struts when they get stretched horizontally.

Hope this helps someone!

RndmTsk
  • 1,594
  • 2
  • 10
  • 12
0

i had this problem also and it seams to manifest only on specific languages and on iOS 7.0 , i had this issue when i want to underline the text in chinese, solved the problem with [ label sizeToFit] hope it will help ;)

Constantin.

Constantin Saulenco
  • 2,185
  • 18
  • 41