#pragma mark-once 獲取文字高度
成都創(chuàng)新互聯公司服務項目包括紅橋網站建設、紅橋網站制作、紅橋網頁制作以及紅橋網絡營銷策劃等。多年來,我們專注于互聯網行業(yè),利用自身積累的技術優(yōu)勢、行業(yè)經驗、深度合作伙伴關系等,向廣大中小型企業(yè)、政府機構等提供互聯網行業(yè)的解決方案,紅橋網站推廣取得了明顯的社會效益與經濟效益。目前,我們服務的客戶以成都為中心已經輻射到紅橋省份的部分城市,未來相信會繼續(xù)擴大服務區(qū)域并繼續(xù)獲得客戶的支持與信任!
- (CGSize)sizeWithmaxSize:(CGSize)size anText:(NSString *)anString
{
NSMutableAttributedString *attributedString = [[NSMutableAttributedString alloc] initWithString:anString];
NSMutableParagraphStyle *style = [[NSMutableParagraphStyle alloc]init];
[style setLineSpacing:6.0f];
[attributedString addAttribute:NSParagraphStyleAttributeName value:style range:NSMakeRange(0, [anString length])];
CGSize realSize = CGSizeZero;
if (SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(@"7.0")) {
CGRect textRect = [anString boundingRectWithSize:size options:NSStringDrawingUsesLineFragmentOrigin attributes:@{NSFontAttributeName:[UIFont systemFontOfSize:MyConsulDetailFrameFontSize],NSParagraphStyleAttributeName:style} context:nil];
realSize = textRect.size;
} else {
realSize = [anString sizeWithFont:[UIFont systemFontOfSize:MyConsulDetailFrameFontSize] maxSize:size lineBreakMode:NSLineBreakByCharWrapping];
}
realSize.width = ceilf(realSize.width);
realSize.height = ceilf(realSize.height);
return realSize;
}