Skip to content

Instantly share code, notes, and snippets.

@tamaki-shingo
Created June 1, 2012 04:38
Show Gist options
  • Save tamaki-shingo/2848813 to your computer and use it in GitHub Desktop.
Save tamaki-shingo/2848813 to your computer and use it in GitHub Desktop.
文字列に合わせたCGSizeを取得
NSString* text = @"hoge";
CGSize size = CGSizeMake(380, CGFLOAT_MAX);
CGSize textSize = [text sizeWithFont:font constrainedToSize:size lineBreakMode:UILineBreakModeCharacterWrap];
NSLog(@"textSize.height is %f",textSize.height);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment