UILabel实现上下左右内边距和自适用高度的计算三种方法

p.p1 { margin: 0.0px 0.0px 0.0px 0.0px; font: 14.0px "PingFang SC"; color: #000000; background-color: rgba(0, 0, 0, 0) }
p.p2 { margin: 0.0px 0.0px 0.0px 0.0px; font: 14.0px "PingFang SC"; color: #000000; background-color: rgba(0, 0, 0, 0); min-height: 20.0px }
p.p3 { margin: 0.0px 0.0px 0.0px 0.0px; font: 18.0px "PingFang SC"; color: #000000; background-color: rgba(0, 0, 0, 0); min-height: 25.0px }
span.s1 { }

1、由于label控件没有contentInsets属性,需要自定义label,添加Insets 属性,并重写父类的几个方法

//下面四个方法用来初始化edgeInsets

- (instancetype)init {

if (self = [super init]) {

self.edgeInsets = UIEdgeInsetsMake(10, 0, 10, 0);

}

return self;

}

- (instancetype)initWithFrame:(CGRect)frame

{

if(self = [super initWithFrame:frame])

{

self.edgeInsets = UIEdgeInsetsMake(10, 0, 10, 0);

}

return self;

}

//storyboard使用

- (instancetype)initWithCoder:(NSCoder *)aDecoder

{

if (self = [super initWithCoder:aDecoder]) {

self.edgeInsets = UIEdgeInsetsMake(10, 0, 10, 0);

}

return self;

}

//xib使用

- (void)awakeFromNib

{

[super awakeFromNib];

self.edgeInsets = UIEdgeInsetsMake(10, 0, 10, 0);

}

// 修改绘制文字的区域,edgeInsets增加bounds

-(CGRect)textRectForBounds:(CGRect)bounds limitedToNumberOfLines:(NSInteger)numberOfLines

{

//设置第一行和最后一行距离label的距离

CGRect rect = [super textRectForBounds:UIEdgeInsetsInsetRect(bounds,self.edgeInsets) limitedToNumberOfLines:numberOfLines];

//根据edgeInsets,修改绘制文字的bounds

rect.origin.x -= self.edgeInsets.left;

rect.origin.y -= self.edgeInsets.top;

rect.size.width += self.edgeInsets.left + self.edgeInsets.right;

rect.size.height += self.edgeInsets.top + self.edgeInsets.bottom;

return rect;

}

//绘制文字

- (void)drawTextInRect:(CGRect)rect

{

//令绘制区域为原始区域,增加的内边距区域不绘制

[super drawTextInRect:UIEdgeInsetsInsetRect(rect, self.edgeInsets)];

}

2、label控件显示多行文本,需要设置numberOfLines设置为0,还要自适用高度

//第一种方法:

self.label.adjustsFontSizeToFitWidth=YES;

//第二种方法:(废弃API)

CGFloat fontSizeToFits;

[self.label.text sizeWithFont:self.label.font minFontSize:12.0 actualFontSize:&fontSizeToFits forWidth:self.label.bounds.size.width lineBreakMode:NSLineBreakByWordWrapping];//12是最小字体

self.label.font = [self.label.font fontWithSize:fontSizeToFits];

//第三种方法:

CGSize labelSize = [self.text boundingRectWithSize:CGSizeMake([UIScreen mainScreen].bounds.size.width - 20, MAXFLOAT) options:NSStringDrawingUsesLineFragmentOrigin attributes:@{NSFontAttributeName:[UIFont systemFontOfSize:14]} context:nil].size;

self.label.frame = CGRectMake(0, 0, labelSize.width, labelSize.height);

原文地址:https://www.cnblogs.com/yuhao309/p/9497387.html

时间: 2024-10-08 16:59:38

UILabel实现上下左右内边距和自适用高度的计算三种方法的相关文章

CSS 内边距 padding 属性

CSS padding 属性定义元素边框与元素内容之间的空白区域. ㈠padding(填充) ⑴当元素的 padding(填充)内边距被清除时,所释放的区域将会受到元素背景颜色的填充. ⑵单独使用 padding 属性可以改变上下左右的填充.   ⑶可能的值: ⑴length    定义一个固定的填充(像素, pt, em,等) ⑵%          使用百分比值定义一个填充 注意:padding 属性接受长度值或百分比值,但不允许使用负值.   ⑷示例1:如果你希望所有 h1 元素的各边都有

注意padding-top 百分比定义基于父元素宽度的百分比上内边距!!是基于宽度

定义和用法 padding-top 属性设置元素的上内边距(空间). 说明 该属性设置元素上内边距的宽度.行内非替换元素上设置的上内边距不会影响行高计算,因此,如果一个元素既有内边距又有背景,从视觉上看可能延伸到其他行,有可能还会与其他内容重叠.不允许指定负内边距值. 注释:不允许使用负值. 默认值: 0 继承性: no 版本: CSS1 JavaScript 语法: object.style.paddingTop="10px" 可能的值 值 描述 length 规定以具体单位计的固定

iOS 设置UILabel 的内边距

iOS 设置UILabel 的内边距 - (void)drawTextInRect:(CGRect)rect { UIEdgeInsets insets = {0, 5, 0, 5}; [super drawTextInRect:UIEdgeInsetsInsetRect(rect, insets)]; } 参考:http://stackoverflow.com/questions/3476646/uilabel-text-margin http://unmi.cc/uilable-uitext

【Swift】UILabel 设置内边距

前言 对应一个曾经开发 Android 的人来说,没有这些基础属性简直令人发指,还是表喷这个,认真写代码 - - # 声明 欢迎转载,但请保留文章原始出处:) 博客园:http://www.cnblogs.com 农民伯伯: http://over140.cnblogs.com 正文 class UILabelPadding : UILabel { private var padding = UIEdgeInsetsZero @IBInspectable var paddingLeft: CGF

UI基础——按钮内边距,图片拉伸

一.内边距 UIButton有三个属性,分别可以设置按钮以及内部子控件的内边距 1.contentEdgeInsets 如果是设置contentEdgeInsets, 会把UIImageView和UIlabel当做一个整体移动 btn.contentEdgeInsets = UIEdgeInsetsMake(30, 0, 0, 0); 对应状态: 2.titleEdgeInsets/imageEdgeInsets 如果是设置titleEdgeInsets/imageEdgeInsets. 那么不

css内边距与外边距的区别

你真的了解margin吗?你知道margin有什么特性吗?你知道什么是垂直外边距合并?margin在块元素.内联元素中的区别?什么时候该用 padding而不是margin?你知道负margin吗?你知道负margin在实际工作中的用途吗?常见的浏览器下margin出现的bug有哪些?…… 写css,你少不了与margin打交道,而对于这个平时我们最常用的css属性我们并非十分了解.介于此我打算写下这篇文章,一来是自己工作中的总结,也是对自己知识的一次梳理. Margin是什么 CSS 边距属性

可以简易设置文字内边距的EdgeInsetsLabel

最终效果: 源码: EdgeInsetsLabel.h 与 EdgeInsetsLabel.m // // EdgeInsetsLabel.h // EdgeInsetsLabel // // Created by YouXianMing on 14/10/27. // Copyright (c) 2014年 YouXianMing. All rights reserved. // #import <UIKit/UIKit.h> @interface EdgeInsetsLabel : UIL

css 尺寸、边框、内边距、背景以及css Sprite

上节课回顾: HTML标签: 格式排版 p 段落 双br 换行 单hr 分隔线 单h1~h6 标题 双pre 原样格式化输出 双div 标签,无任何特殊意义 HTML标签 :文本 <em> 强调 倾斜 双<ruby></ruby> 加拼音 <rt></rt> <strong> 加粗 强调 双<mark></mark> 标记 选中 双<sub></sub> 下标<sup><

10-padding(内边距)

padding padding:就是内边距的意思,它是边框到内容之间的距离 另外padding的区域是有背景颜色的.并且背景颜色和内容的颜色一样.也就是说background-color这个属性将填充所有的border以内的区域 padding的设置 padding有四个方向,分别描述4个方向的padding. 描述的方法有两种 1.写小属性,分别设置不同方向的padding padding-top: 30px; padding-right: 30px; padding-bottom: 30px