For iOS7, I used the UIButton titleLabel.frame.size.width property to determine the width of my button title under different localisations so I could p
UIButton
titleLabel.frame.size.width
Set the title text, then make a sizeToFit for the title label, and try to get the titleLabel.frame.size.width
[myButton setTitle:@"My Title" forState:UIControlStateNormal]; [myButton.titleLabel sizeToFit];