iOS-Button图片和文字垂直居中【按钮图片和文字同时居中】
程序员文章站
2022-06-28 13:40:07
以前不怎么有这样的需求,最近开发经常用到,所以就干脆封装一个这样的 Button 让图片和字体都垂直居中,重写layoutSubviews方法,来实现就可以,至于 layoutSubviews 方法什么时候触发,可以自行查下; ......
以前不怎么有这样的需求,最近开发经常用到,所以就干脆封装一个这样的 Button 让图片和字体都垂直居中,重写layoutSubviews方法,来实现就可以,至于 layoutSubviews 方法什么时候触发,可以自行查下;
- (instancetype)initWithCoder:(NSCoder *)coder{ self = [super initWithCoder:coder]; if (self) { self.layer.shadowColor = [UIColor lightGrayColor].CGColor; self.layer.shadowOffset = CGSizeMake(0, 1); self.layer.shadowOpacity = 0.1; } return self; } //重写该方法 有些比例可以自行调节 -(void)layoutSubviews{ [super layoutSubviews]; //计算宽高 float imgHeight = self.imageView.image.size.height; float imgWidth = self.imageView.image.size.width; //imageView的尺寸 self.imageView.frame = CGRectMake((VIEWWIDTH(self) - imgWidth)/2, VIEWHEIGHT(self)/2 - imgHeight*7/7,imgWidth, imgHeight); //titleLabel的尺寸 [self.titleLabel sizeToFit]; float titleWidth = VIEWWIDTH(self.titleLabel); float titleHeight = VIEWHEIGHT(self.titleLabel); self.titleLabel.frame = CGRectMake((VIEWWIDTH(self) - titleWidth)/2, VIEWHEIGHT(self)/2 + imgHeight/7 + 20*VIEWHEIGHT(self)/900, titleWidth, titleHeight); self.titleLabel.textAlignment = NSTextAlignmentCenter; }
上一篇: 类似qq登录多账号保存
推荐阅读
-
CSS让同一行的图片和文字垂直居中对齐(转载)
-
iOS - UIButton(UIEdgeInsets)/设置button上的文字和图片上下垂直居中对齐
-
iOS-Button图片和文字垂直居中【按钮图片和文字同时居中】
-
word表格中文字如何设置左右和上下居中(水平和垂直居中)
-
div中图片和文字同一行实现垂直居中
-
初学HTML/CSS:图片如何在DIV中的垂直居中,文字与DIV中的间距如何消除_html/css_WEB-ITnose
-
初学HTML/CSS:图片如何在DIV中的垂直居中,文字与DIV中的间距如何消除_html/css_WEB-ITnose
-
可(兼容IE6+)水平垂直居中图片及文字的实例代码
-
html的文字图片怎样垂直居中
-
可(兼容IE6+)水平垂直居中图片及文字的实例代码