美文网首页
动态计算控件高度

动态计算控件高度

作者: 海笙樾 | 来源:发表于2018-03-23 16:08 被阅读0次

    + (CGRect)createSize:(NSString *)lableStr andFont:(NSInteger)fondS andSize:(CGSize)mysize andName:(NSString *)name;

    {

        UIFont *font;

        if (name.length == 0)

        {

            font=[UIFont systemFontOfSize:fondS];

        }else

        {

            font=[UIFont fontWithName:name size:fondS];

        }

        CGRect rect=[lableStr boundingRectWithSize:mysize options:NSStringDrawingUsesLineFragmentOrigin attributes:[NSDictionary dictionaryWithObject:font forKey:NSFontAttributeName] context:nil];

        return rect;

    }

    相关文章

      网友评论

          本文标题:动态计算控件高度

          本文链接:https://www.haomeiwen.com/subject/xyexcftx.html