Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.
On normal fonts only

I sent this to my dad who has his a larger font and "Obama" appeared normally while you can't see it on my iPhone
 
Reason #452 for not using imessage.

Could you please list the 451 other reasons not to use iMessage. Since it is the main way that I communicate, your sharing this font of wisdom should greatly improve my life.
 
Worked on mine. However in the list of messages the entire original message does show. It's just when you go into the message that it doesn't appear. As an aside the entire message appeared on my Pebble but Obama was missing in iMessage.
 
If I had to take a guess I would say it's a small bug that the bubble isn't wide enough and Obama gets wrapped to the next line (and you can't see it)

This right here. It seems pretty obvious that that's what the issue is. Both of these phrases take up exactly 1 full line of width and the space at the end puts it over the edge. The problem is the space isn't shown when composing (where the bubble width must be being calculated) only when it becomes a bubble. That's why it doesn't happen on iPad or Mac where the bubbles are wider.

No mystery here. Just a small programming mistake anyone could have made. Now that it has all this publicity, it will probably get fixed in the next patch build.
 
If I had to take a guess I would say it's a small bug that the bubble isn't wide enough and Obama gets wrapped to the next line (and you can't see it)

Source: I'm a developer and I've worked on an app where we had chat bubbles like that and I had a bug where the bubble size wasn't calculated properly and it ended up a bit like that

I agree with you. Rearranging the characters causes the bug to still appear, so long as a space is the last character.

(It's still case sensitive)
 
Edit: Never mind! Other posters have a similar idea but put it much better.
 
Try Copying and Pasting

If I had to take a guess I would say it's a small bug that the bubble isn't wide enough and Obama gets wrapped to the next line (and you can't see it)

Source: I'm a developer and I've worked on an app where we had chat bubbles like that and I had a bug where the bubble size wasn't calculated properly and it ended up a bit like that

I agree with this. If you try copying the received message, it copies the missing word as well, which means that the word is being transmitted, it it just can't be seen because it is being wrapped to the next line.
 
If I had to take a guess I would say it's a small bug that the bubble isn't wide enough and Obama gets wrapped to the next line (and you can't see it)

Source: I'm a developer and I've worked on an app where we had chat bubbles like that and I had a bug where the bubble size wasn't calculated properly and it ended up a bit like that

Yeah something like [someString sizeWithFont:contrainedToSize:lineBreakMode] with wrong constraints. :-D
 
Maybe a word-wrap bug having to do with the "bubble" image rendering? That would explain why notifications aren't affected, nor iPads (which probably use a different scale for on-screen elements).

If my guess is right, then certain words ended up having their rendered length incorrectly calculated, and then when the bubble is shown slightly too short, the word is incorrectly "wrapped" to nothing. What happens if you scramble the letters, like baOam I wonder? Or use a different font size in Accessibility settings?
 
I have an iPhone 5 64GB here in the UK, bought SIM free at the Apple Store, and the "Obama" phrase exhibits the bug, but the "surprise" one doesn’t...
 
If I had to take a guess I would say it's a small bug that the bubble isn't wide enough and Obama gets wrapped to the next line (and you can't see it)

Source: I'm a developer and I've worked on an app where we had chat bubbles like that and I had a bug where the bubble size wasn't calculated properly and it ended up a bit like that

This sounds the most correct, I copied bubble with the missing "Obama" and pasted the text, the Obama was still there, indicating a displaying issue.
 
I can send "The best prize is a surprise" just fine.

Oh wait.. I'm using Android. :p

(Friendly troll)
 
I just tested this. It only works if your iPhone is not set to display messages in a larger font. It also does not affect OS X's Messages. It also is not a problem at all for blind people using VoiceOver.

Therefore, the most logical hypothesis to me is that it is indeed an error with text wrapping - the bubble is just a hair too narrow to display the last word, and it's being wrapped, but the bubble isn't being expanded vertically.

WARNING: propellerhead content ahead! :)

As a software developer, I will wager my guess on this one. I'm guessing that the width and height of the bubble to be displayed is computed based on the text to be displayed. It's most likely floating point numbers are used for these calculations.

If you've done any development involving floating point numbers, you'll know that they can be a real hassle. For instance, due to the way floating point numbers are stored in binary, you cannot exactly represent the decimal number "0.2" or "1/5" as a binary float. This means that depending on how much precision you're expecting, trying to represent 0.2 in floating point might instead leave you with 0.19999999999999998 or something similar depending on the precision of your float.

You can understand this a bit if you think of the fraction 1/3. There's no way to accurately, exactly represent that number as a decimal number. 0.3333333.... will go on and on forever. So often it might get written as 0.33334 or something similar depending on precision. Since computers represent all numbers as binary, the fraction 1/5 produces the same effect and ends with a binary number like 0.001100110011001....

To solve this most code needs to use a "Delta" value, or basically an allowable amount of imperfection in the values. If you perform a comparison and say "is 0.2 equal to 1/5?" you will find that it's false. Why? Because remember 1/5 is actually 0.199999999.... and not 0.2!

Using a Delta lets us allow some imperfection. The question then becomes "is 0.2 within DELTA of 1/5?" Say the DELTA is 0.00001. We compare 0.2 and 0.19999998, and find out if the difference is less than 0.00001 - it is - so we decide these two values are equal.

But I digress. Suppose that iMessage computes, based on the text, that the width of the iMessage bubble should be 4.2 units and the height should be 1 unit. The type of units is irrelevant here - the important part is that at some point we're dealing with a floating point number.

Since we just learned that 4.2 can't be represented exactly, this will come out to be 4.19999998 or something like that. At some point, measurements have to be converted to an integer number of pixels. Depending on how the rounding works, this might get rounded down by one pixel from what was expected due to this floating point error. So now instead of drawing the bubble, say, 360 pixels wide, it gets drawn 359 pixels wide.

The bubble is then drawn at the size specified, and then the typography code steps in and tries to write the text into the bubble, but finds that the bubble is one pixel too narrow. It does what it's supposed to do and wraps the text to the next line, but since the bubble was drawn only one line height high, we don't see the second line!

No matter what the cause here, I can safely say that this is NOT in any way an attempt to censor content. The message content is there - VoiceOver proves that. This is entirely a GUI bug and I'm sure it will be addressed.

In the meantime, you could make your text a bit larger. In Accessibility under General in settings, you could set it to one size up - 20pt - and all of the phrases we've discussed here show up correctly. (Of course, if my theory is true, there's probably other phrases that can trip up ANY font size!)
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.