Skip to content

Instantly share code, notes, and snippets.

View zeedark's full-sized avatar
💭
There.

Zeed Ark zeedark

💭
There.
View GitHub Profile
@zeedark
zeedark / gist:1639124
Created January 19, 2012 09:55
Resize a UIButton according to its title's length.
// Resize a UIButton according to its title's length.
CGSize stringSize = [self.myButton.titleLabel.text sizeWithFont:self.myButton.titleLabel.font];
CGRect frame = self.myButton.frame;
frame.size.width = stringSize.width;
[self.myButton setFrame:frame];