时间:2021-05-19
UIEdgeInsets是什么
UIEdgeInsets是什么?我们点进去看一下:
typedef struct UIEdgeInsets { CGFloat top, left, bottom, right; // specify amount to inset (positive) for each of the edges. values can be negative to 'outset'} UIEdgeInsets;UIEdgeInsets是个结构体类型。里面有四个参数,分别是:top, left, bottom, right。这四个参数表示距离上边界、左边界、下边界、右边界的距离。
哪三个UIEdgeInsets属性
不知道大家发现没有,UIButton里面有三个UIEdgeInsets属性,分别是:
@property(nonatomic) UIEdgeInsets contentEdgeInsets UI_APPEARANCE_SELECTOR; // default is UIEdgeInsetsZero@property(nonatomic) UIEdgeInsets titleEdgeInsets; // default is UIEdgeInsetsZero@property(nonatomic) UIEdgeInsets imageEdgeInsets; // default is UIEdgeInsetsZerocontentEdgeInsets后面有个UI_APPEARANCE_SELECTOR是什么意思呢?
提示:UI_APPEARANCE_SELECTOR标记的属性都支持通过外观代理来定制。
举例,设置UIButton的contentEdgeInsets属性,可以直接调用:
创建UIButton:
UIButton *button = [[UIButton alloc] init];button.frame = CGRectMake(50, 200, 200, 50);[button setTitle:@"我是UIButton" forState:UIControlStateNormal];[button setTitleColor:[UIColor blueColor] forState:UIControlStateNormal];[button setBackgroundColor:[UIColor orangeColor]];button.titleLabel.textAlignment = NSTextAlignmentLeft;button.contentHorizontalAlignment = UIControlContentHorizontalAlignmentLeft;[self.view addSubview:button];创建一个button,让button的title居左,以便观察:
UIButton的contentEdgeInsets属性
@property(nonatomic) UIEdgeInsets contentEdgeInsets UI_APPEARANCE_SELECTOR; // default is UIEdgeInsetsZerocontentEdgeInsets里有一个content应该指的就是UIButton的title。
参数含义:
上面我们讲了UIEdgeInsets是个结构体类型。里面有四个参数,分别是:top, left, bottom, right。这四个参数表示距离上边界、左边界、下边界、右边界的距离。
这四个参数的值可以为正值,也可以为负值。拿left举例:
left = 10; //代表以当前位置为基准,向右移动10个像素left = -10; //代表以当前位置为基准,向左移动10个像素向右移动20个像素
button.contentEdgeInsets = UIEdgeInsetsMake(0, 20, 0, 0);向右移动20个像素,left = 20,就可以了。
向左移动20个像素
button.contentEdgeInsets = UIEdgeInsetsMake(0, -20, 0, 0);UIButton的titleEdgeInsets属性
titleEdgeInsets和contentEdgeInsets的作用差不多。我们及设置contentEdgeInsets,又设置titleEdgeInsets,会怎样呢?
button.titleEdgeInsets = UIEdgeInsetsMake(0, 20, 0, 0);button.contentEdgeInsets = UIEdgeInsetsMake(0, 20 , 0, 0);看一下效果:
UIButton的imageEdgeInsets属性
创建一个带照片的button:
UIButton *button = [[UIButton alloc] init];button.frame = CGRectMake(50, 200, 200, 200);[button setTitleColor:[UIColor blueColor] forState:UIControlStateNormal];[button setBackgroundColor:[UIColor orangeColor]];[button setImage:[UIImage imageNamed:@"test"] forState:UIControlStateNormal];[self.view addSubview:button];运行一下:
向右移动50个像素
button.imageEdgeInsets = UIEdgeInsetsMake(0, 50, 0, 0);看看效果:
向左移动50个像素
button.imageEdgeInsets = UIEdgeInsetsMake(0, -50, 0, 0);看看效果:
大家可以自行设置其他三个参数看看效果是怎样的,自己动手便于理解。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
IOS通过tag删除动态创建的UIButton动态创建直接上代码?1234567//开始按钮letbtnStart=UIButton()btnStart.tag
在iOS的实际开发中,如果我们把一张有图片(有特别形状的,特别是类似有圆角的图片)放在UIButton中,当UIButton改变大小是,图片可能会被拉伸并且产生
ios开发之swift中手势的实例详解手势操作主要包括如下几类手势属性说明点击uitapgesturerecognizernumberoftapsrequire
关于此属性的基本用法可以参阅offsetleft属性用法详解一章节。此属性具有一定的兼容性问题,那就是在IE7浏览器中,它的返回值是想对于最近的父辈元素的左侧的
UIButton内部默认有个UIImageView、UILabel控件,可以分别用下面属性访问:复制代码代码如下:@property(nonatomic,rea