Skip to content

Instantly share code, notes, and snippets.

@tigi44
Created December 7, 2021 02:11
Show Gist options
  • Save tigi44/584a14c6c946d31687a9fb3db2e3eb3a to your computer and use it in GitHub Desktop.
Save tigi44/584a14c6c946d31687a9fb3db2e3eb3a to your computer and use it in GitHub Desktop.
Adjust UIButton Size depend on title label
#import "FitButton.h"
@implementation FitButton
-(CGSize)intrinsicContentSize {
return [self.titleLabel sizeThatFits:CGSizeMake(self.titleLabel.preferredMaxLayoutWidth, CGFLOAT_MAX)];;
}
-(void)layoutSubviews {
self.titleLabel.preferredMaxLayoutWidth = self.frame.size.width;
[super layoutSubviews];
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment