开发者

UIButton - text truncated

I've created a wide UIButton with Interface Builder (Xcode 4), added in a dummy 5 character title (e.g. Click) and then changed the title text programmatically later.

Odd thing is the width of the title text seems to remain the same so, if I use a longer piece of text (e.g. "Now click h开发者_如何学Goere"), it appears like this: "N...e"

Any idea what's going on?

UPDATE: If I use a long line of text in IB it's centred. However, once I've programmatically-changed this text it appears left-aligned!


You need to use the UIButton method setTitle:forState:

[self.myButton setTitle:@"Correct New Title" forState:UIControlStateNormal];

as this will correctly update the size and position of the buttons label. Where as just setting the title with self.myButton.titleLabel.text = @"Wrong New Title"; will not.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜