码迷,mamicode.com
首页 > 其他好文 > 详细

sizeWithAttributes

时间:2015-05-22 13:23:50      阅读:118      评论:0      收藏:0      [点我收藏+]

标签:

    CGSize textSize = CGSizeZero;

    if ([[UIDevice currentDevice].systemVersion floatValue] >= 7.0)

    {

        textSize = [text sizeWithAttributes: @{NSFontAttributeName:_numLabel.font}];

    }

    else

    {

#pragma clang diagnostic push

#pragma clang diagnostic ignored "-Wdeprecated-declarations"

        textSize = [text sizeWithFont:_numLabel.font];

#pragma clang diagnostic pop

    }

 

sizeWithAttributes

标签:

原文地址:http://www.cnblogs.com/417460188dy/p/4521942.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!